diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-03-15 16:33:22 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-04-13 12:41:08 +0200 |
commit | 064b70ffe2beced36b4693cdd2a8e2cbd2139b47 (patch) | |
tree | 78149356693a775d0a1111548232ce4c5c25a0e5 /hints | |
parent | 944d48f78fffdf92a1710164726d48604225142c (diff) | |
download | perl-064b70ffe2beced36b4693cdd2a8e2cbd2139b47.tar.gz |
Allow -Duse64bitint without promoting to use64bitall on HP-UX
Fix for http://rt.perl.org/rt3/Public/Bug/Display.html?id=17736
Diffstat (limited to 'hints')
-rw-r--r-- | hints/hpux.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index bdfbec1cac..8d0aaf767f 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -279,14 +279,18 @@ EOM ldflags="$ldflags -mlp64" ;; esac - ;; + ;; esac ;; esac ;; *) - ccflags="$ccflags +DD64" - ldflags="$ldflags +DD64" + case "$use64bitall" in + $define|true|[yY]*) + ccflags="$ccflags +DD64" + ldflags="$ldflags +DD64" + ;; + esac ;; esac |