From: Jarkko Hietaniemi Date: Mon, 13 Mar 2000 04:26:15 +0000 (+0000) Subject: hints tweak X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=adc819799bb6f7a4b26d8cd4a2ad17aae2e76055;p=p5sagit%2Fp5-mst-13.2.git hints tweak p4raw-id: //depot/cfgperl@5696 --- diff --git a/hints/hpux.sh b/hints/hpux.sh index 91ba868..9798a5b 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -189,15 +189,13 @@ esac' case "$ccisgcc" in "$define") ;; *) # The strict ANSI mode (-Aa) doesn't like the LL suffixes. + ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'` case "$ccflags" in - *-Aa*) - echo "(Changing from strict ANSI compilation to extended because of 64-bitness)" - ccflags=`echo $ccflags|sed 's@ -Aa @ -Ae @'` - ;; + *-Ae*) ;; *) ccflags="$ccflags -Ae" ;; esac ;; - esac + esac set `echo " $libswanted " | sed -e 's@ dl @ @'` libswanted="$*" @@ -395,13 +393,12 @@ case "$uselargefiles" in ccflags="$ccflags -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" # The strict ANSI mode (-Aa) doesn't like large files. - case "$ccflags" in - -Aa*) - echo "(Changing from strict ANSI compilation to extended because of large files)" - ccflags=`echo $ccflags|sed 's@ -Aa @ -Ae @'` - ;; - *) ccflags="$ccflags -Ae" ;; - esac + ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'` + case "$ccflags" in + *-Ae*) ;; + *) ccflags="$ccflags -Ae" ;; + esac + ;; esac EOCBU