summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorJohn L. Allen <allen@grumman.com>1998-07-10 09:57:01 -0400
committerGurusamy Sarathy <gsar@cpan.org>1998-07-11 18:29:18 +0000
commitfc2c2f48627ad2aa687bf62319411314bd55a226 (patch)
tree2d4314fb1df20eba5de6950d0fc6cfc1681e7c36 /hints
parent54dc92de45fcd4ecd424e5092d7d46275547e13a (diff)
downloadperl-fc2c2f48627ad2aa687bf62319411314bd55a226.tar.gz
: _71 & _04 - Make AIX hints preserve ccflags as per docs
Message-ID: <Pine.SOL.3.91.980710134236.15717A-100000@gateway.grumman.com> p4raw-id: //depot/perl@1431
Diffstat (limited to 'hints')
-rw-r--r--hints/aix.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/hints/aix.sh b/hints/aix.sh
index 21dc888a83..10e7603f78 100644
--- a/hints/aix.sh
+++ b/hints/aix.sh
@@ -32,13 +32,13 @@ esac
case "$osvers" in
3*) d_fchmod=undef
- ccflags='-D_ALL_SOURCE'
+ ccflags="$ccflags -D_ALL_SOURCE"
;;
*) # These hints at least work for 4.x, possibly other systems too.
- ccflags='-D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE'
+ ccflags="$ccflags -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIX_SOURCE"
case "$cc" in
*gcc*) ;;
- *) ccflags="-qmaxmem=8192 $ccflags" ;;
+ *) ccflags="$ccflags -qmaxmem=8192" ;;
esac
nm_opt='-B'
;;
@@ -72,7 +72,7 @@ lddlflags='-bhalt:4 -bM:SRE -bI:$(PERL_INC)/perl.exp -bE:$(BASEEXT).exp -b noent
esac
if [ "X$usethreads" = "X$define" ]; then
- ccflags="-DNEED_PTHREAD_INIT $ccflags"
+ ccflags="$ccflags -DNEED_PTHREAD_INIT"
case "$cc" in
xlc_r | cc_r)
;;