FLTK: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| ftp://ftp3.easysw.com/pub/fltk/ | | ftp://ftp3.easysw.com/pub/fltk/snapshots/fltk-2.0.x-r5479.tar.bz2 | ||
|} | |} | ||
Revision as of 13:25, 27 September 2006
| Download Source: | ftp://ftp3.easysw.com/pub/fltk/snapshots/fltk-2.0.x-r5479.tar.bz2 |
|---|
Dependencies
Required
Optional
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}" ./configure --prefix=/usr \
--x-libraries=${XORG_PREFIX}/lib &&
make
Install the package
make install &&
mv -v /usr/bin/fltk-config{,-32}
N32
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr \
--x-libraries=${XORG_PREFIX}/lib32 --libdir=/usr/lib32 &&
make
Install the package
make install &&
mv -v /usr/bin/fltk-config{,-n32}
64Bit
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr \
--x-libraries=${XORG_PREFIX}/lib64 --libdir=/usr/lib64 &&
make
Install the package
make install &&
mv -v /usr/bin/fltk-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/fltk-config