summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-08-31 18:09:20 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-31 18:09:20 +0000
commit59155cc063cf4bfd6a5bac9ec4e936509becfd87 (patch)
tree061f9c41a59986ca3ad35e19813701e7e11de88e /Configure
parentf4a14a62773a52915497a005f3032730fe6154fd (diff)
downloadperl-59155cc063cf4bfd6a5bac9ec4e936509becfd87.tar.gz
Forget about NV_MAX (#6951). Various floating point tweaks,
ideas from Eric Fifer, Yitzchak, Alan, and Spider. p4raw-id: //depot/perl@6953
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure11
1 files changed, 7 insertions, 4 deletions
diff --git a/Configure b/Configure
index e6a6cdf1b0..428241e468 100755
--- a/Configure
+++ b/Configure
@@ -20,7 +20,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Thu Aug 31 17:56:37 EET DST 2000 [metaconfig 3.0 PL70]
+# Generated on Thu Aug 31 21:06:17 EET DST 2000 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.org)
cat >/tmp/c1$$ <<EOF
@@ -5414,7 +5414,7 @@ case "$use64bitint$use64bitall" in
*"$define"*)
case "$archname64" in
'')
- "This architecture is naturally 64-bit, not changing architecture name." >&4
+ echo "This architecture is naturally 64-bit, not changing architecture name." >&4
;;
*)
case "$use64bitint" in
@@ -7847,17 +7847,21 @@ int main()
Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf);
checkit("-100000", buf);
+ Gconvert((DOUBLETYPE)123.456, 8, 0, buf);
+ checkit("123.456", buf);
+
exit(0);
}
EOP
case "$d_Gconvert" in
gconvert*) xxx_list='gconvert gcvt sprintf' ;;
gcvt*) xxx_list='gcvt gconvert sprintf' ;;
-*) xxx_list='sprintf gconvert gcvt' ;;
+*) xxx_list='gconvert gcvt sprintf' ;;
esac
case "$d_longdbl$uselongdouble$d_PRIgldbl" in
"$define$define$define")
+ # for long doubles prefer sprintf
xxx_list="`echo $xxx_list|sed s/sprintf//`"
xxx_list="sprintf $xxx_list"
case "$d_qgcvt" in
@@ -10431,7 +10435,6 @@ EOP
esac
-
: check for off64_t
echo " "
echo "Checking to see if you have off64_t..." >&4