source: patches/perl-5.10.1-libc-1.patch @ 243290f

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 243290f was 1bf0ff5, checked in by Jim Gifford <clfs@…>, 15 years ago

Updated Perl to 5.10.1

  • Property mode set to 100644
File size: 1.2 KB
  • hints/linux.sh

    Submitted By: Ryan Oliver <ryan dot oliver at pha dot com dot au>
    Date: 2009-08-25
    Initial Package Version: 5.10.1
    Origin: Ryan Oliver
    Upstream Status: Unknown
    Description: This patch adapts some hard-wired paths to the C library.
                 It uses the $prefix variable to locate the correct libc.
    
    Rediffed: Against 5.10.0 by Joe Ciccone on 2008-08-30
              Against 5.10.1 By Jim Gifford on 2009-08-25
    
    diff -Naur perl-5.10.1.orig/hints/linux.sh perl-5.10.1/hints/linux.sh
    old new  
    6363# We don't use __GLIBC__ and  __GLIBC_MINOR__ because they
    6464# are insufficiently precise to distinguish things like
    6565# libc-2.0.6 and libc-2.0.7.
    66 if test -L /lib/libc.so.6; then
    67     libc=`ls -l /lib/libc.so.6 | awk '{print $NF}'`
    68     libc=/lib/$libc
     66if test -L ${prefix}/lib/libc.so.6; then
     67    libc=`ls -l ${prefix}/lib/libc.so.6 | awk '{print $NF}'`
     68    libc=${prefix}/lib/$libc
    6969fi
    7070
    7171# Configure may fail to find lstat() since it's a static/inline
     
    436436    libswanted="$libswanted pthread"
    437437    ;;
    438438esac
     439
     440locincpth=""
     441loclibpth=""
     442glibpth="${prefix}/lib"
     443usrinc="${prefix}/include"
Note: See TracBrowser for help on using the repository browser.