From: Jarkko Hietaniemi Date: Wed, 28 Feb 2001 16:26:37 +0000 (+0000) Subject: Expand usemorebits early if d_casti32 needs to be undefined. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6d5d7abf5a8b730704df06d4203cb1dba3ba4523;p=p5sagit%2Fp5-mst-13.2.git Expand usemorebits early if d_casti32 needs to be undefined. p4raw-id: //depot/perl@8968 --- diff --git a/hints/hpux.sh b/hints/hpux.sh index c38e8bd..b01d189 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -155,6 +155,9 @@ fi case "$use64bitall" in $define|true|[yY]*) use64bitint="$define" ;; esac +case "$usemorebits" in +$define|true|[yY]*) use64bitint="$define"; uselongdouble="$define" ;; +esac case "$use64bitint" in $define|true|[yY]*) if [ "$xxOsRevMajor" -lt 11 ]; then diff --git a/hints/irix_6.sh b/hints/irix_6.sh index f9d2e31..90f4766 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -335,6 +335,9 @@ EOCBU # The -n32 makes off_t to be 8 bytes, so we should have largefileness. # Until we figure out what to be probe for in Configure (ditto for hpux.sh) +case "$usemorebits" in # Need to expand this now, then. +$define|true|[yY]*) use64bitint="$define"; uselongdouble="$define" ;; +esac case "$use64bitint" in $define|true|[yY]*) ;; *) d_casti32='undef' ;;