Qca2

From CBLFS
Revision as of 14:15, 13 September 2009 by Jciccone (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Download Source: http://delta.affinix.com/download/qca/2.0/qca-2.0.2.tar.bz2

Introduction to Qca2

Project Homepage: Unknown

Dependencies

Required

Non-Multilib

Compile the package:

./configure --prefix=${QT4DIR} &&
make

Install the package:

make install 

Multilib

32Bit

Compile the package:

export USE_ARCH=32 QMAKESPEC=linux-g++-32 && 
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=${QT4DIR} &&
make

Install the package

make install &&
unset USE_ARCH QMAKESPEC

N32

Todo

64Bit

Compile the package:

export USE_ARCH=64 QMAKESPEC=linux-g++-64 && 
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=${QT4DIR} --libdir=${QT4DIR}/lib64 &&
make

Install the package

make install &&
unset USE_ARCH QMAKESPEC