glfs/x/lib/qt/qt-exp.xml

37 lines
1.4 KiB
XML
Raw Normal View History

<sect2>
<title>Command explanations</title>
<para><userinput>-prefix /opt/qt-&qt-version;</userinput> : This command sets up
the install destination.</para>
<para><userinput>-qt-gif</userinput> : This command adds support for gif
files to the libraries.</para>
<para><userinput>-system-libpng -system-libmng -system-zlib
-system-libjpeg</userinput> : This command forces the library to use the
shared libraries that are on your system instead of recreating its own
set of support libraries for these functions.</para>
<para><userinput>-no-g++-exceptions</userinput> : This command disables
the exceptions coding generated by the C++ compiler.</para>
<para><userinput>-thread</userinput> : This command compiles the library
to support multi-threading.</para>
<para><userinput>if test -L /opt/qt; then rm /opt/qt; fi</userinput> :
This command eliminates the link if it already exists so our next
command runs properly.</para>
<para><userinput>ln -s /opt/qt-&qt-version; /opt/qt</userinput> : This command
standardizes the location of the qt libraries to the ld.so.conf entry
described below.</para>
<para><userinput>cp -r doc/man /opt/qt/doc</userinput> : This command
installs the man directory which is missed by make install.</para>
<para><userinput>cp -r examples /opt/qt/doc</userinput> : This command
installs the examples directory which is missed by make install.</para>
</sect2>