Do not force d_casti32 to undef if we are on a 64-bit environment.
[p5sagit/p5-mst-13.2.git] / hints / irix_6.sh
index b65de23..f9d2e31 100644 (file)
@@ -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