Changeset ccd51bc


Ignore:
Timestamp:
Jan 21, 2009, 12:11:31 PM (15 years ago)
Author:
Chris Staub <chris@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
946b71d
Parents:
60ec2de
Message:

Add sed command to make perl use system-installed zlib

Location:
BOOK
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • BOOK/final-system/common/perl.xml

    r60ec2de rccd51bc  
    3232<screen os="s2"><userinput>sed -i -e "s@pldlflags=''@pldlflags=\"\$cccdlflags\"@g" \
    3333    -e "s@static_target='static'@static_target='static_pic'@g" Makefile.SH</userinput></screen>
     34
     35    <para os="s3">By default, Perl's Compress::Raw::Zlib module builds and
     36    links against its own internal copy of Zlib. The following command will
     37    tell it use the system-installed Zlib:</para>
     38
     39<screen os="s4"><userinput>sed -i -e '/^BUILD_ZLIB/ s/True/False/' \
     40        -e '/^INCLUDE\|^LIB/ s|\./zlib-src|/usr/include|' \
     41        ext/Compress/Raw/Zlib/config.in</userinput></screen>
    3442
    3543    <note os="a00">
  • BOOK/final-system/multilib/perl-64bit.xml

    r60ec2de rccd51bc  
    2929    href="../common/perl.xml"
    3030    xpointer="xpointer(//*[@os='s2'])"/>
     31
     32    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     33    href="../common/perl.xml"
     34    xpointer="xpointer(//*[@os='s3'])"/>
     35
     36    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     37    href="../common/perl.xml"
     38    xpointer="xpointer(//*[@os='s4'])"/>
    3139
    3240    <para os="mp1">Perl does not, by default, know about library directories with names other
  • BOOK/final-system/multilib/perl-n32.xml

    r60ec2de rccd51bc  
    3030    href="../common/perl.xml"
    3131    xpointer="xpointer(//*[@os='s2'])"/>
     32
     33    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     34    href="../common/perl.xml"
     35    xpointer="xpointer(//*[@os='s3'])"/>
     36
     37    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     38    href="../common/perl.xml"
     39    xpointer="xpointer(//*[@os='s4'])"/>
    3240
    3341    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  • BOOK/final-system/multilib/perl.xml

    r60ec2de rccd51bc  
    3030    href="../common/perl.xml"
    3131    xpointer="xpointer(//*[@os='s2'])"/>
     32
     33    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     34    href="../common/perl.xml"
     35    xpointer="xpointer(//*[@os='s3'])"/>
     36
     37    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     38    href="../common/perl.xml"
     39    xpointer="xpointer(//*[@os='s4'])"/>
    3240
    3341    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  • BOOK/introduction/common/changelog.xml

    r60ec2de rccd51bc  
    3636    </listitem>
    3737-->
     38
     39    <listitem>
     40      <para>January 21, 2009</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[Chris] - Added command to make Perl use system-installed
     44          Zlib. Fixes ticket #201.</para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
    3848
    3949    <listitem>
Note: See TracChangeset for help on using the changeset viewer.