diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-04 05:42:37 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-04 05:42:37 +0000 |
commit | ec7b9793cab4fd80f803047b9e81fcd00b48ad79 (patch) | |
tree | 455323e0fdc86daa3536ff2a7b104b1829035b36 /hints | |
parent | 1fb1cd2d392fedba83048ff49802c60d6f30b6f9 (diff) | |
download | perl-ec7b9793cab4fd80f803047b9e81fcd00b48ad79.tar.gz |
HP-UX 64-bitness cures
p4raw-id: //depot/cfgperl@5511
Diffstat (limited to 'hints')
-rw-r--r-- | hints/hpux.sh | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index bbb91f7894..9a0d362b24 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -140,6 +140,9 @@ else fi # Do this right now instead of the delayed callback unit approach. +case "$use64bitall" in +$define|true|[yY]*) use64bitint="$define" ;; +esac case "$use64bitint" in $define|true|[yY]*) if [ "$xxOsRevMajor" -lt 11 ]; then @@ -154,12 +157,13 @@ EOM fi # Without the 64-bit libc we cannot do much. - if [ ! -f /lib/pa20_64/libc.sl ]; then + libc='/lib/pa20_64/libc.sl' + if [ ! -f "$libc" ]; then cat <<EOM >&4 -You do not seem to have the 64-bit libraries in /lib/pa20_64. -Most importantly, I cannot find /lib/pa20_64/libc.sl. -Cannot continue, aborting. +*** You do not seem to have the 64-bit libraries in /lib/pa20_64. +*** Most importantly, I cannot find the $libc. +*** Cannot continue, aborting. EOM exit 1 |