From: Jarkko Hietaniemi Date: Wed, 28 Feb 2001 14:35:35 +0000 (+0000) Subject: Do not force d_casti32 to undef if we are on a 64-bit environment. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=db3030c00cb9bf89cc2777cc9facc87b6b1d55e0;p=p5sagit%2Fp5-mst-13.2.git Do not force d_casti32 to undef if we are on a 64-bit environment. (The #8961 was too bold.) p4raw-id: //depot/perl@8964 --- diff --git a/hints/hpux.sh b/hints/hpux.sh index c9524cf..c38e8bd 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -436,4 +436,8 @@ EOCBU ccisgcc='' # Until we figure out what to be probe for in Configure (ditto for irix_6.sh) -d_casti32='undef' +case "$use64bitint" in +$define|true|[yY]*) ;; +*) d_casti32='undef' ;; +esac + diff --git a/hints/irix_6.sh b/hints/irix_6.sh index b65de23..f9d2e31 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -335,5 +335,8 @@ 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) -d_casti32='undef' +case "$use64bitint" in +$define|true|[yY]*) ;; +*) d_casti32='undef' ;; +esac