source: patches/perl-5.12.2-libc-1.patch @ 351ffeb5

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 351ffeb5 was a81c020, checked in by Joe Ciccone <jciccone@…>, 13 years ago

Updated Perl to 5.12.2.

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

    Submitted By: Ryan Oliver <ryan dot oliver at pha dot com dot au>
    Date: 2010-08-01
    Initial Package Version: 5.8.8
    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
              Against 5.12.1 By Joe Ciccone on 2010-08-01
    
    diff -Naur perl-5.12.1.orig/hints/linux.sh perl-5.12.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
     
    441441    libswanted="$libswanted pthread"
    442442    ;;
    443443esac
     444
     445locincpth=""
     446loclibpth=""
     447glibpth="${prefix}/lib"
     448usrinc="${prefix}/include"
Note: See TracBrowser for help on using the repository browser.