Make multi-line selections work correctly under X11.
[quassel.git] / dev-notes / build-static-qt.txt
1 [16:35:11] <EgS> 1.)
2 [16:35:12] <EgS> ./configure -no-accessibility -qt-sql-sqlite -no-qt3support
3 -no-gif -no-libtiff -no-libpng -no-libmng -no-libjpeg -nomake demos -nomake
4 examples -nomake gui -nomake uic -nomake opengl -nomake tools -no-opengl
5 -no-sm -no-xshape -no-xinerama -no-xcursor -no-xfixes -no-xrandr -no-xrender
6 -no-fontconfig -no-tablet -no-xkb
7 [16:35:31] <EgS> 2.)
8 [16:35:31] <EgS> $ cat QT4_TARGET_DIRECTORIES
9 [16:35:31] <EgS> src/tools/moc src/tools/rcc src/tools/uic src/corelib src/xml src/network src/sql src/plugins/codecs src/script
10 [16:35:38] <EgS> so eine datei ist sehr hilfreich
11 [16:35:40] <EgS> und dann im src dir:
12 [16:36:21] <EgS> for i in `cat /home/irc/QT4_TARGET_DIRECTORIES`; do make -C $i; done
13 [16:36:28] <EgS> naja...
14 [16:36:33] <EgS> $pfad halt :)
15 [16:36:50] <EgS> das ganze kannste dann noch mit "make install" machen
16
17 for static core:
18 ./configure -static -no-accessibility -qt-sql-sqlite -qt-zlib -no-qt3support \
19 -no-gif -no-libtiff -no-libpng -no-libmng -no-libjpeg -nomake demos -nomake examples \
20 -nomake gui -nomake uic -nomake opengl -nomake tools -no-opengl -no-sm -no-xshape \
21 -no-xinerama -no-xcursor -no-xfixes -no-xrandr -no-xrender -no-fontconfig -no-tablet \
22 -no-xkb -no-glib -no-svg -openssl-linked -no-phonon -no-webkit -no-dbus -no-xmlpatterns \
23 -prefix /usr/local/Trolltech/qt-4.4-static
24
25 for i in `cat /home/sputnick/devel/quassel/dev-notes/QT4_TARGET_DIRECTORIES`; do make -C $i; done