Author: matthew
Date: 2010-09-22 15:29:44 -0600 (Wed, 22 Sep 2010)
New Revision: 2231
Added:
trunk/perl/perl-5.12.2-libc-1.patch
Log:
Add toolchain fix for latest version of Perl.
Added: trunk/perl/perl-5.12.2-libc-1.patch
===================================================================
--- trunk/perl/perl-5.12.2-libc-1.patch (rev 0)
+++ trunk/perl/perl-5.12.2-libc-1.patch 2010-09-22 21:29:44 UTC (rev 2231)
@@ -0,0 +1,31 @@
+Submitted By: Matt Burgess <matthew at linuxfromscratch dot org>
+Date: 2009-08-25
+Initial Package Version: 5.10.1
+Origin: Not Submitted - LFS Specific
+Description: This patch adapts some hard-wired paths to the C library.
+ It uses the $prefix variable to locate the correct libc.
+
+diff -Naur perl-5.10.1.orig/hints/linux.sh perl-5.10.1/hints/linux.sh
+--- perl-5.10.1.orig/hints/linux.sh 2009-02-12 22:58:12.000000000 +0000
++++ perl-5.10.1/hints/linux.sh 2009-08-25 18:31:06.000000000 +0000
+@@ -63,9 +63,9 @@
+ # We don't use __GLIBC__ and __GLIBC_MINOR__ because they
+ # are insufficiently precise to distinguish things like
+ # libc-2.0.6 and libc-2.0.7.
+-if test -L /lib/libc.so.6; then
++if test -L ${prefix}/lib/libc.so.6; then
+ libc=`ls -l /lib/libc.so.6 | awk '{print $NF}'`
+- libc=/lib/$libc
++ libc=${prefix}/lib/$libc
+ fi
+
+ # Configure may fail to find lstat() since it's a static/inline
+@@ -436,3 +436,8 @@
+ libswanted="$libswanted pthread"
+ ;;
+ esac
++
++locincpth=""
++loclibpth=""
++glibpth="${prefix}/lib"
++usrinc="${prefix}/include"
--
http://linuxfromscratch.org/mailman/listinfo/patches
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page