glfs/x/lib/qt/qt-inst.xml
Larry Lawrence c6a2f39832 changes in glib,atk,pango and metacity
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@662 af4574ff-66df-0310-9fd7-8a98e5e911e0
2003-02-07 04:22:53 +00:00

26 lines
788 B
XML

<sect2>
<title>Installation of qt</title>
<para><screen><userinput>./configure -prefix /opt/qt-&qt-version; -qt-gif -system-libpng \
&nbsp;&nbsp;&nbsp;-system-libmng -system-zlib -system-libjpeg -no-g++-exceptions \
&nbsp;&nbsp;&nbsp;-thread &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
if test -L /opt/qt; then rm /opt/qt; fi &amp;&amp;
ln -s /opt/qt-&qt-version; /opt/qt &amp;&amp;
ln -s /opt/qt/lib/libqt-mt.so /opt/qt/lib/libqt.so &amp;&amp;
cp -r doc/man /opt/qt/doc &amp;&amp;
cp -r examples /opt/qt/doc</userinput></screen></para>
<note><para>
The build time for qt is quite long. If you want to save some time and don't want the tutorials and examples, change the first make line above to:
</para>
<para>
<userinput>make sub-tools</userinput>
</para>
</note>
</sect2>