WxWidgets: Difference between revisions
From CBLFS
Jump to navigationJump to search
Chipster19 (talk | contribs) install manually one file (setup.h) which is needed to compile gspiceui |
|||
| Line 35: | Line 35: | ||
--with-gnomeprint | --with-gnomeprint | ||
--enable-unicode | |||
--enable-compat24 | |||
== Non-Multilib == | == Non-Multilib == | ||
Revision as of 05:59, 16 October 2008
| Download Source: | http://prdownloads.sourceforge.net/wxwindows/wxWidgets-2.9.0.tar.bz2 |
|---|
Introduction to WxWidgets
Project Homepage: Unknown
Dependencies
Required
Optional
Configuration Information
The options below speak for themselves:
--with-odbc
--with-libmspack
--with-sdl
--with-gnomeprint
--enable-unicode
--enable-compat24
Non-Multilib
Compile the package:
sed -i "/^SEARCH_INCLUDE=/a\ ${XORG_PREFIX}/include" configure &&
./configure --prefix=/usr &&
make
Install the package
make install
Install the setup header file that is needed by some packages:
cp include/msvc/wx/setup.h /usr/include/wx-2.9/wx
Multilib
32Bit
Compile the package:
sed -i "/^SEARCH_INCLUDE=/a\ ${XORG_PREFIX}/include" configure &&
USE_ARCH=32 CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr &&
make
Install the package
make install &&
mv -v /usr/bin/wx-config{,-32}
Install the setup header file that is needed by some packages:
cp include/msvc/wx/setup.h /usr/include/wx-2.9/wx
N32
Compile the package:
sed -i "/^SEARCH_INCLUDE=/a\ ${XORG_PREFIX}/include" configure &&
USE_ARCH=n32 CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr \
--libdir=/usr/lib32 &&
make
Install the package
make install &&
mv -v /usr/bin/wx-config{,-n32}
Install the setup header file that is needed by some packages:
cp include/msvc/wx/setup.h /usr/include/wx-2.9/wx
64Bit
Compile the package:
sed -i "/^SEARCH_INCLUDE=/a\ ${XORG_PREFIX}/include" configure &&
USE_ARCH=64 CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr \
--libdir=/usr/lib64 &&
make
Install the package
make install &&
mv -v /usr/bin/wx-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/wx-config
Install the setup header file that is needed by some packages:
cp include/msvc/wx/setup.h /usr/include/wx-2.9/wx
Contents
| Installed Programs: | wx-config wxrc wxrc-2.9 |
|---|---|
| Installed Libraries: | libwx_base-2.9.so, libwx_base_net-2.9.so, libwx_base_xml-2.9.so, libwx_gtk2_adv-2.9.so, libwx_gtk2_aui-2.9.so, libwx_gtk2_core-2.9.so, libwx_gtk2_dbgrid-2.9.so, libwx_gtk2_html-2.9.so, libwx_gtk2_qa-2.9.so, libwx_gtk2_richtext-2.9.so, libwx_gtk2_xrc-2.9.so |
| Installed Directories: | /usr/lib/wx, /usr/include/wx-2.9 |