Qca2: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 4: | Line 4: | ||
| http://delta.affinix.com/download/qca/{{Qca-Version2}}/qca-{{Qca-Version}}.tar.bz2 | | http://delta.affinix.com/download/qca/{{Qca-Version2}}/qca-{{Qca-Version}}.tar.bz2 | ||
|} | |} | ||
{{Blank-Package-Introduction}} | |||
== Dependencies == | == Dependencies == | ||
| Line 10: | Line 12: | ||
* [[Qt4]] | * [[Qt4]] | ||
== Non-Multilib == | == Non-Multilib == | ||
Compile the package: | Compile the package: | ||
./configure --prefix=${QT4DIR} && | |||
make | make | ||
Install the package: | Install the package: | ||
make install | make install | ||
== Multilib == | == Multilib == | ||
| Line 31: | Line 27: | ||
=== 32Bit === | === 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 | make | ||
Install the | Install the package | ||
make install && | make install && | ||
unset USE_ARCH QMAKESPEC | |||
=== N32 === | === N32 === | ||
Todo | |||
=== 64Bit === | === 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 | make | ||
Install the | Install the package | ||
make install && | make install && | ||
unset USE_ARCH QMAKESPEC | |||
[[Category:Network Applications]] | |||
Latest revision as of 13:15, 13 September 2009
| 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