Changeset 2dae8b3 for x/lib/qt.xml


Ignore:
Timestamp:
05/23/2004 06:09:58 AM (20 years ago)
Author:
Tushar Teredesai <tushar@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
9545a9c2
Parents:
48d4c920
Message:

Use envvar KDE_PREFIX for kde installation

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2204 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/lib/qt.xml

    r48d4c920 r2dae8b3  
    7474bash
    7575export PATH=$PWD/bin:$PATH &amp;&amp;
    76 export LD_LIBRARY_PATH=$PWD/lib &amp;&amp;
     76export LD_LIBRARY_PATH=$PWD/lib:$LD_LIBRARY_PATH &amp;&amp;
    7777./configure -prefix /usr -docdir /usr/share/doc/qt \
    7878    -headerdir /usr/include/qt -plugindir /usr/lib/qt/plugins \
     
    107107<screen><userinput><command>bash
    108108export QTDIR=$PWD &amp;&amp;
    109 export LD_LIBRARY_PATH=$PWD/lib &amp;&amp;
     109export LD_LIBRARY_PATH=$PWD/lib:$LD_LIBRARY_PATH &amp;&amp;
    110110export PATH=$PWD/bin:$PATH &amp;&amp;
    111111./configure -prefix /opt/qt-&qt-version; -qt-gif -system-libpng \
     
    143143# End qt addition to man.conf
    144144EOF</command></userinput></screen>
     145
     146<para>Also, <envar>QTDIR</envar> needs to be set when compiling packages that depend on Qt.
     147Add the following so that it is available when compiling packages.</para>
     148
     149<screen><userinput>export QTDIR=/opt/qt</userinput></screen>
     150
    145151</sect4>
    146152</sect3>
     
    160166defines where the root of the Qt directory is located.</para>
    161167
    162 <para><command>export LD_LIBRARY_PATH=$PWD/lib</command>: This command
    163 sets up the location of libraries for the build process.</para>
     168<para><command>export LD_LIBRARY_PATH=$PWD/lib:$LD_LIBRARY_PATH</command>: This command
     169allows the not yet installed qt libraries to be used by the not yet installed qt programs.</para>
    164170
    165171<para><command>export PATH=$PWD/bin:$PATH</command>: This command
Note: See TracChangeset for help on using the changeset viewer.