Changeset 8e29d97


Ignore:
Timestamp:
08/11/2013 08:14:23 PM (11 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
74d76938
Parents:
5851e54
Message:

Add some useful gcc environment variables for Xorg

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/installing/xorg7.xml

    r5851e54 r8e29d97  
    172172    $XORG_PREFIX/lib/pkgconfig</filename> and <filename class="directory">
    173173    $XORG_PREFIX/share/pkgconfig</filename> to your
    174     <envar>PKG_CONFIG_PATH</envar> variable. It is also helpful to specify an
    175     include directory for the <command>aclocal</command> program.  Issue the
    176     following commands as the <systemitem class="username">root</systemitem>
    177     user:</para>
     174    <envar>PKG_CONFIG_PATH</envar> variable. It is also helpful to specify
     175    additional search paths for <command>gcc</command> and an include directory
     176    for the <command>aclocal</command> program.  Issue the following commands
     177    as the <systemitem class="username">root</systemitem> user:</para>
    178178
    179179<screen><userinput role="root">cat &gt;&gt; /etc/profile.d/xorg.sh &lt;&lt; "EOF"
    180180
    181 pathappend $XORG_PREFIX/bin PATH
    182 pathappend $XORG_PREFIX/lib/pkgconfig PKG_CONFIG_PATH
     181pathappend $XORG_PREFIX/bin             PATH
     182pathappend $XORG_PREFIX/lib/pkgconfig   PKG_CONFIG_PATH
    183183pathappend $XORG_PREFIX/share/pkgconfig PKG_CONFIG_PATH
    184184
     185pathappend $XORG_PREFIX/lib             LIBRARY_PATH
     186pathappend $XORG_PREFIX/include         C_INCLUDE_PATH
     187pathappend $XORG_PREFIX/include         CPLUS_INCLUDE_PATH
     188
    185189ACLOCAL='aclocal -I $XORG_PREFIX/share/aclocal'
    186190
    187 export PATH PKG_CONFIG_PATH ACLOCAL
     191export PATH PKG_CONFIG_PATH ACLOCAL LIBRARY_PATH C_INCLUDE_PATH CPLUS_INCLUDE_PATH
    188192EOF</userinput></screen>
    189193
Note: See TracChangeset for help on using the changeset viewer.