View | Details | Raw Unified | Return to bug 4893
Collapse All | Expand All

(-)./Configure.orig (-3 / +4 lines)
Lines 92-98 Link Here
92
paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
92
paths="$paths /opt/gnu/bin /opt/new /opt/new/bin /opt/nbin"
93
paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
93
paths="$paths /sys5.3/bin /sys5.3/usr/bin /bsd4.3/bin /bsd4.3/usr/ucb"
94
paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /usr/ccs/bin"
94
paths="$paths /bsd4.3/usr/bin /usr/bsd /bsd43/bin /usr/ccs/bin"
95
paths="$paths /etc /usr/lib /usr/ucblib /lib /usr/ccs/lib"
95
paths="$paths /etc /usr/lib /usr/lib64 /usr/ucblib /lib /usr/ccs/lib"
96
paths="$paths /sbin /usr/sbin /usr/libexec"
96
paths="$paths /sbin /usr/sbin /usr/libexec"
97
paths="$paths /system/gnu_library/bin"
97
paths="$paths /system/gnu_library/bin"
98
98
Lines 1182-1188 Link Here
1182
loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1182
loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
1183
1183
1184
: general looking path for locating libraries
1184
: general looking path for locating libraries
1185
glibpth="/lib /usr/lib $xlibpth"
1185
glibpth="/lib /usr/lib /lib64 /usr/lib64 $xlibpth"
1186
glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1186
glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
1187
test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1187
test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
1188
test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
1188
test -f /shlib/libc.so     && glibpth="/shlib $glibpth"
Lines 2204-2210 Link Here
2204
uname
2204
uname
2205
"
2205
"
2206
pth=`echo $PATH | sed -e "s/$p_/ /g"`
2206
pth=`echo $PATH | sed -e "s/$p_/ /g"`
2207
pth="$pth /lib /usr/lib"
2207
pth="$pth /lib /usr/lib /lib64 /usr/lib64"
2208
for file in $loclist; do
2208
for file in $loclist; do
2209
	eval xxx=\$$file
2209
	eval xxx=\$$file
2210
	case "$xxx" in
2210
	case "$xxx" in
Lines 17296-17301 Link Here
17296
}
17234
}
17297
EOCP
17235
EOCP
17298
	set try
17236
	set try
17237
	echo $compile_ok >&4
17299
	if eval $compile_ok && $run ./try; then
17238
	if eval $compile_ok && $run ./try; then
17300
		echo 'Looks OK.' >&4
17239
		echo 'Looks OK.' >&4
17301
		set `$run ./try 1`
17240
		set `$run ./try 1`
(-)./hints/linux.sh.orig (-1 / +11 lines)
Lines 51-57 Link Here
51
# We don't use __GLIBC__ and  __GLIBC_MINOR__ because they
51
# We don't use __GLIBC__ and  __GLIBC_MINOR__ because they
52
# are insufficiently precise to distinguish things like
52
# are insufficiently precise to distinguish things like
53
# libc-2.0.6 and libc-2.0.7.
53
# libc-2.0.6 and libc-2.0.7.
54
if test -L /lib/libc.so.6; then
54
if test -e /lib64/libc.so.6; then
55
    libc=`ls -l /lib64/libc.so.6 | awk '{print $NF}'`
56
    libc=/lib64/$libc
57
    #plibpth='/usr/local/lib64 /usr/lib64 /lib64'
58
    glibpth='/lib64 /usr/lib64 /usr/local/lib64'
59
    libspath='/usr/local/lib64 /lib64 /usr/lib64'
60
    #libpth='/usr/local/lib64 /lib64 /usr/lib64'
61
    loclibpth='/usr/local/lib64'
62
    lddlflags='-shared -L/usr/local/lib64'
63
    ldflags=' -L/usr/local/lib64'
64
elif test -L /lib/libc.so.6; then
55
    libc=`ls -l /lib/libc.so.6 | awk '{print $NF}'`
65
    libc=`ls -l /lib/libc.so.6 | awk '{print $NF}'`
56
    libc=/lib/$libc
66
    libc=/lib/$libc
57
fi
67
fi
(-)perl-5.8.4/lib/Math/BigInt/CalcEmu.pm.orig (+1 lines)
Lines 8-13 Link Here
8
$VERSION = '0.04';
8
$VERSION = '0.04';
9
9
10
package Math::BigInt;
10
package Math::BigInt;
11
use Math::BigInt;
11
12
12
# See SYNOPSIS below.
13
# See SYNOPSIS below.
13
14

Return to bug 4893