diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2015-03-06 12:57:54 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2015-03-06 12:57:54 +0100 |
commit | 19eeb8f3f538405239ec8f4cff95421b9d9a3bfb (patch) | |
tree | 04b603002b0fcaa1343812205bfdfb48d61dd8d7 /hints | |
parent | 1b9db2fb33d1c276cb7b213383cbaa41cbfddec1 (diff) | |
download | perl-19eeb8f3f538405239ec8f4cff95421b9d9a3bfb.tar.gz |
Make use64bitall distinctive from use64bitint on HP-UX
Diffstat (limited to 'hints')
-rw-r--r-- | hints/hpux.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index cb1895d94a..b2650a74a2 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -598,6 +598,14 @@ EOCBU cat >UU/uselargefiles.cbu <<'EOCBU' # This script UU/uselargefiles.cbu will get 'called-back' by Configure # after it has prompted the user for whether to use large files. + +case "$archname:$use64bitall:$use64bitint" in + *-LP64*:undef:define) + archname=`echo "$archname" | sed 's/-LP64/-64int/'` + echo "Archname changed to $archname" + ;; + esac + case "$uselargefiles" in ""|$define|true|[yY]*) # there are largefile flags available via getconf(1) |