D-BUS Qt3: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
== Dependencies == | == Dependencies == | ||
=== Required === | |||
* [[D-BUS Core]] | |||
* [[Pkg-config]] | * [[Pkg-config]] | ||
* [[Qt3]] | * [[Qt3]] | ||
Revision as of 17:19, 23 December 2006
| Qt3 Binding: | http://www.sbox.tugraz.at/home/v/voyager/dbus-1-qt3-0.9.tar.bz2 |
|---|
Dependencies
Required
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --with-qt-libraries=${QTDIR}/lib &&
make
Install the package:
make install
N32
Compile the package:
sed -i "/search_libs/s/lib/&32/g" configure &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 --with-qt-libraries=${QTDIR}/lib32 &&
make
Install the package:
make install
64 Bit
Compile the package:
sed -i "/search_libs/s/lib/&64/g" configure &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 --with-qt-libraries=${QTDIR}/lib64 &&
make
Install the package:
make install