From: H.Merijn Brand Date: Mon, 15 Mar 2010 15:33:22 +0000 (+0100) Subject: Allow -Duse64bitint without promoting to use64bitall on HP-UX X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=064b70ffe2beced36b4693cdd2a8e2cbd2139b47;p=p5sagit%2Fp5-mst-13.2.git Allow -Duse64bitint without promoting to use64bitall on HP-UX Fix for http://rt.perl.org/rt3/Public/Bug/Display.html?id=17736 --- diff --git a/hints/hpux.sh b/hints/hpux.sh index bdfbec1..8d0aaf7 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