--- ./Configure.orig 2003-12-05 11:57:56.000000000 +0000 +++ ./Configure.orig 2004-02-27 10:52:32.000000000 +0000 @@ -92,7 +92,7 @@ paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin" paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb" paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /usr/ccs/bin" -paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib" +paths="$paths /etc /usr/lib /usr/lib64 /usr/ucblib /lib /usr/ccs/lib" paths="$paths /sbin /usr/sbin /usr/libexec" paths="$paths /system/gnu_library/bin" @@ -1182,7 +1182,7 @@ loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib" : general looking path for locating libraries -glibpth="/lib /usr/lib $xlibpth" +glibpth="/lib /usr/lib /lib64 /usr/lib64 $xlibpth" glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib" test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth" test -f /shlib/libc.so && glibpth="/shlib $glibpth" @@ -2204,7 +2204,7 @@ uname " pth=`echo $PATH | sed -e "s/$p_/ /g"` -pth="$pth /lib /usr/lib" +pth="$pth /lib /usr/lib /lib64 /usr/lib64" for file in $loclist; do eval xxx=\$$file case "$xxx" in @@ -17296,6 +17234,7 @@ } EOCP set try + echo $compile_ok >&4 if eval $compile_ok && $run ./try; then echo 'Looks OK.' >&4 set `$run ./try 1` --- ./hints/linux.sh.orig 2003-11-05 23:10:29.000000000 +0000 +++ ./hints/linux.sh.orig 2004-02-27 10:52:32.000000000 +0000 @@ -51,7 +51,17 @@ # 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 -e /lib64/libc.so.6; then + libc=`ls -l /lib64/libc.so.6 | awk '{print $NF}'` + libc=/lib64/$libc + #plibpth='/usr/local/lib64 /usr/lib64 /lib64' + glibpth='/lib64 /usr/lib64 /usr/local/lib64' + libspath='/usr/local/lib64 /lib64 /usr/lib64' + #libpth='/usr/local/lib64 /lib64 /usr/lib64' + loclibpth='/usr/local/lib64' + lddlflags='-shared -L/usr/local/lib64' + ldflags=' -L/usr/local/lib64' +elif test -L /lib/libc.so.6; then libc=`ls -l /lib/libc.so.6 | awk '{print $NF}'` libc=/lib/$libc fi --- perl-5.8.4/lib/Math/BigInt/CalcEmu.pm.orig 2004-03-23 00:03:12 +0300 +++ perl-5.8.4/lib/Math/BigInt/CalcEmu.pm.orig 2004-07-24 13:26:13 +0400 @@ -8,6 +8,7 @@ $VERSION = '0.04'; package Math::BigInt; +use Math::BigInt; # See SYNOPSIS below.