-qlongdouble considered harmful by Merijn.
Jarkko Hietaniemi [Wed, 23 May 2001 21:01:48 +0000 (21:01 +0000)]
p4raw-id: //depot/perl@10177

hints/aix.sh

index 2f19f1c..c374131 100644 (file)
@@ -430,13 +430,9 @@ cat > UU/uselongdouble.cbu <<'EOCBU'
 # after it has prompted the user for whether to use long doubles.
 case "$uselongdouble" in
 $define|true|[yY]*)
-        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))'
+        # -qlongdouble for cc taken out on 20010522 cause it
+        # causes more trouble than it does any good --hmb
+        d_Gconvert='sprintf((b),"%.*llg",((int)(n)),(x))'
        ;;
 esac
 EOCBU