Changeset 734823ff for x


Ignore:
Timestamp:
01/26/2010 12:41:28 AM (14 years ago)
Author:
DJ Lucas <dj@…>
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:
241ac2bb
Parents:
6ab4f39
Message:

Corrected Xorg Libraries optional dependencies.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/installing/x7lib.xml

    r6ab4f39 r734823ff  
    7474
    7575    <bridgehead renderas="sect4">Optional</bridgehead>
    76     <para role="optional"><xref linkend="libxcb"/></para>
     76    <para role="optional"><xref linkend="libxcb"/> (a modern Xlib replacement)
     77    and <xref linkend="xmlto"/> with one or more of the following:
     78    <xref linkend="fop"/>, <xref linkend="Links"/>, <xref linkend="lynx"/>,
     79    and <xref linkend="w3m"/> (to generate additional PDF or text
     80    documentation for the libXfont package).</para>
    7781
    7882    <para condition="html" role="usernotes">User Notes:
     
    101105    package:</para>
    102106
    103 <screen><userinput>./configure $XORG_CONFIG &amp;&amp;
     107<screen><userinput>case $(basename "$PWD") in
     108libXfont-[0-9]* )
     109                 ./configure $XORG_CONFIG --disable-devel-docs
     110                 ;;
     111  libX11-[0-9]* )
     112                 ./configure $XORG_CONFIG --without-xcb
     113                 ;;
     114              * )
     115                 ./configure $XORG_CONFIG
     116                 ;;
     117esac &amp;&amp;
    104118make</userinput></screen>
    105119
     
    119133    <para><parameter>--without-xcb</parameter>: By default,
    120134    <application>libX11</application> will use <xref linkend="libxcb"/>
    121     for its transport layer. This parameter is necessary in the
    122     <command>./configure</command> command if <xref linkend="libxcb"/>
    123     is not installed.</para>
    124 
     135    for its transport layer. Omit this parameter (or the <command>case</command>
     136    statement) if you've installed <xref linkend="libxcb"/>.</para>
     137
     138    <para><parameter>--with-fop</parameter>: Use <xref linkend="fop"/> to
     139    generate PDF documentation (only for the libXfont package).</para>
     140
     141    <para><parameter>--disable-devel-docs</parameter>: Diable generation of
     142    text documentation in the libXfont package if
     143    <xref linkend="xmlto"/> is installed without a text browser. Omit
     144    this parameter (or the entire <command>case</command> statement) if a text
     145    browser is installed.</para>
    125146  </sect2>
    126147
Note: See TracChangeset for help on using the changeset viewer.