Change 15247 by jhi@alpha on 2002/03/15 19:41:43
The UINT32_MAX_BROKEN is still needed for pre-gcc-3
in HP-UX (from H.Merijn Brand)
Affected files ...
.... //depot/perl/hints/hpux.sh#80 edit
Differences ...
==== //depot/perl/hints/hpux.sh#80 (text) ====
Index: perl/hints/hpux.sh
--- perl/hints/hpux.sh.~1~ Fri Mar 15 12:45:05 2002
+++ perl/hints/hpux.sh Fri Mar 15 12:45:05 2002
@@ -73,6 +73,11 @@
# Done too late in Configure if hinted
gccversion=`$cc --version`
fi
+ case "$gccversion in
+ [012]*) # HP-UX and gcc-2.* break UINT32_MAX :-(
+ ccflags="$ccflags -DUINT32_MAX_BROKEN"
+ ;;
+ esac
case "`getconf KERNEL_BITS 2>/dev/null`" in
*64*)
echo "main(){}">try.c
End of Patch.