Submitted By: Anderson Lizardo <andersonlizardo(at)yahoo(dot)com(dot)br>
Date: 2003-09-06
Initial Package Version: 5.8.0
Origin: based on current LFS-BOOK patch (perl-5.8.0-libc-2.patch)
Description: this patch adapts some hard-wired paths to the C library.
It uses the $prefix variable to locate the correct libc and
headers.
diff -Naur perl-5.8.7.orig/hints/linux.sh perl-5.8.7/hints/linux.sh
old
|
new
|
|
52 | 52 | # We don't use __GLIBC__ and __GLIBC_MINOR__ because they |
53 | 53 | # are insufficiently precise to distinguish things like |
54 | 54 | # libc-2.0.6 and libc-2.0.7. |
55 | | if test -L /lib/libc.so.6; then |
56 | | libc=`ls -l /lib/libc.so.6 | awk '{print $NF}'` |
57 | | libc=/lib/$libc |
| 55 | if test -L ${prefix}/lib/libc.so.6; then |
| 56 | libc=`ls -l ${prefix}/lib/libc.so.6 | awk '{print $NF}'` |
| 57 | libc=${prefix}/lib/$libc |
58 | 58 | fi |
59 | 59 | |
60 | 60 | # Configure may fail to find lstat() since it's a static/inline |
… |
… |
|
315 | 315 | ;; |
316 | 316 | esac |
317 | 317 | EOCBU |
| 318 | locincpth="" |
| 319 | loclibpth="" |
| 320 | glibpth="${prefix}/lib" |
| 321 | usrinc="${prefix}/include" |