summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2000-10-18 15:12:01 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2000-10-19 13:04:29 +0000
commit18e6bcfda680248a0af962933ffac01af9e6cce1 (patch)
treeefdb860076fe907eab9663418305faf78993dc9b /hints
parent6e1c9671e8cfa857af192c614a912a1db14856a4 (diff)
downloadperl-18e6bcfda680248a0af962933ffac01af9e6cce1.tar.gz
Re: [ID 20001013.008] perl 5.6.0 on AIX w/GCC
Message-Id: <20001018131021.F844.H.M.BRAND@hccnet.nl> p4raw-id: //depot/perl@7368
Diffstat (limited to 'hints')
-rw-r--r--hints/aix.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/hints/aix.sh b/hints/aix.sh
index cf1270d539..cf7e43cce7 100644
--- a/hints/aix.sh
+++ b/hints/aix.sh
@@ -380,7 +380,10 @@ cat > UU/uselongdouble.cbu <<'EOCBU'
# after it has prompted the user for whether to use long doubles.
case "$uselongdouble" in
$define|true|[yY]*)
- ccflags="$ccflags -qlongdouble"
+ case "$cc" in
+ *gcc*) ;;
+ *) ccflags="$ccflags -qlongdouble" ;;
+ esac
# The explicit cc128, xlc128, xlC128 are not needed,
# the -qlongdouble should do the trick. --jhi
d_Gconvert='sprintf((b),"%.*llg",(n),(x))'