diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-28 14:35:35 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-28 14:35:35 +0000 |
commit | db3030c00cb9bf89cc2777cc9facc87b6b1d55e0 (patch) | |
tree | d399b0fda174ca3c72577774e9e90725d7170fbf /hints/irix_6.sh | |
parent | 39644a267dae6dfa935b1c1d39151eb399850949 (diff) | |
download | perl-db3030c00cb9bf89cc2777cc9facc87b6b1d55e0.tar.gz |
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
Diffstat (limited to 'hints/irix_6.sh')
-rw-r--r-- | hints/irix_6.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hints/irix_6.sh b/hints/irix_6.sh index b65de234b1..f9d2e31276 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 |