Ticket #203: texconfig.patch

File texconfig.patch, 1.8 KB (added by billy@…, 22 years ago)

corrects texinfo, ncurses and zlib options.

  • tex-exp.xml

    diff --exclude=CVS -Naur ./tex-exp.xml /home/billy/NEWBLFS/BOOK/pst/typesetting/tex/tex-exp.xml
    old new  
    1616
    1717<para>Insure that TeX binaries will be installed in /usr/bin.</para>
    1818
     19<para><userinput>--without-texinfo :</userinput></para>
     20
     21<para>A default LFS installation already has the texinfo package
     22installed, we will avoid overwriting it with the included texinfo
     23package.</para>
     24
     25<para><userinput>--with-system-ncurses : </userinput></para>
     26
     27<para>Specify using the already installed ncurses library.</para>
     28
     29<para><userinput>--with-system-zlib : </userinput></para>
     30
     31<para>LFS Systems starting with version 4.0 have zlib installed as
     32part of the base operating system, we can avoid building it here.</para>
     33
    1934<para><userinput>texconfig dvips paper letter :</userinput></para>
    2035<para>Set the default paper size for TeX.</para>
    2136
  • tex-inst.xml

    diff --exclude=CVS -Naur ./tex-inst.xml /home/billy/NEWBLFS/BOOK/pst/typesetting/tex/tex-inst.xml
    old new  
    2424
    2525<para><screen><userinput>     
    2626./configure --with-x=no --prefix=/usr \
    27         --exec-prefix=/usr-- --bindir=/usr/bin &amp;&amp;
     27    --without-texinfo   --with-system-ncurses --with-system-zlib \
     28    --exec-prefix=/usr --bindir=/usr/bin &amp;&amp;
    2829make world &amp;&amp;
    2930texconfig dvips paper letter &amp;&amp;
    3031texconfig font rw
    3132</userinput></screen></para>
    3233
     34<note><para>
     35LFS Systems prior to version 4.0 did not install zlib by default.
     36Remove the --with-system-zlib option from the above commands if you
     37do not have zlib installed.</para></note>
    3338</sect2>
    34