summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-03-13 04:45:57 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-03-13 04:45:57 +0000
commita0147706c7338180f73e56bd8451114029a08571 (patch)
tree9a33b44e93ff6f4167806fc8495b8ec00aaa9f23 /hints
parentadc819799bb6f7a4b26d8cd4a2ad17aae2e76055 (diff)
downloadperl-a0147706c7338180f73e56bd8451114029a08571.tar.gz
there's no end to tweaking
p4raw-id: //depot/cfgperl@5697
Diffstat (limited to 'hints')
-rw-r--r--hints/hpux.sh16
1 files changed, 10 insertions, 6 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh
index 9798a5bf63..4a22643796 100644
--- a/hints/hpux.sh
+++ b/hints/hpux.sh
@@ -392,12 +392,16 @@ case "$uselargefiles" in
# but we cheat for now.
ccflags="$ccflags -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
- # The strict ANSI mode (-Aa) doesn't like large files.
- ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
- case "$ccflags" in
- *-Ae*) ;;
- *) ccflags="$ccflags -Ae" ;;
- esac
+ case "$ccisgcc" in
+ "$define") ;;
+ *) # The strict ANSI mode (-Aa) doesn't like large files.
+ ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
+ case "$ccflags" in
+ *-Ae*) ;;
+ *) ccflags="$ccflags -Ae" ;;
+ esac
+ ;;
+ esac
;;
esac