Modify QT to fix Pango and probably other configure scripts

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@425 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Larry Lawrence 2002-12-02 16:58:29 +00:00
parent ac931bb6e1
commit 0eb8ee4f16
4 changed files with 11 additions and 2 deletions

View File

@ -2,8 +2,8 @@
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"/usr/share/docbook/docbookx.dtd" [
<!ENTITY version "20021201">
<!ENTITY releasedate "December 1st, 2002">
<!ENTITY version "20021202">
<!ENTITY releasedate "December 2nd, 2002">
<!ENTITY % book SYSTEM "book/book.ent">
<!ENTITY % preface SYSTEM "preface/preface.ent">

View File

@ -10,6 +10,10 @@ page in Chapter 1 for details on who wrote what.</para>
<itemizedlist>
<listitem><para>December 2nd, 2002 [larry]: X: Added a link in the QT
installation so that configure scripts looking for libqt find the
libqt-mt that we install.</para></listitem>
<listitem><para>December 1st, 2002 [larry]: Gnome: Fixed script on gdm.
Failed when bring down gdm when it was not running.</para></listitem>

View File

@ -26,6 +26,10 @@ command runs properly.</para>
standardizes the location of the qt libraries to the ld.so.conf entry
described below.</para>
<para><userinput>ln -s /opt/qt/lib/libqt-mt.so
/opt/qt/lib/libqt.so</userinput> : This command allows configure scripts
to find a working QT installation.</para>
<para><userinput>cp -r doc/man /opt/qt/doc</userinput> : This command
installs the man directory which is missed by make install.</para>

View File

@ -8,6 +8,7 @@ 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>