summaryrefslogtreecommitdiff
path: root/configure.com
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2007-09-24 02:51:23 +0000
committerCraig A. Berry <craigberry@mac.com>2007-09-24 02:51:23 +0000
commit3ad67d07907dc439a00d1d7b75327659837d45ce (patch)
treed0d46ede01c89aadac44e8915363efa443be592e /configure.com
parent7cf3a6a3b1c2b0edcdd2a882c2d730810d8f9910 (diff)
downloadperl-3ad67d07907dc439a00d1d7b75327659837d45ce.tar.gz
Allow IEEE math to be deselected on OpenVMS I64 (but it remains
the default). p4raw-id: //depot/perl@31949
Diffstat (limited to 'configure.com')
-rw-r--r--configure.com9
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.com b/configure.com
index 3a9e85ca9d..e7eefba0e2 100644
--- a/configure.com
+++ b/configure.com
@@ -2535,8 +2535,8 @@ $ GOSUB myread
$ be_case_sensitive = ans
$! IEEE math?
$ echo ""
-$ echo "Perl normally uses IEEE format (T_FLOAT) floating point numbers"
-$ echo "internally on Alpha, but if you need G_FLOAT for binary compatibility"
+$ echo "Perl normally uses IEEE format (T_FLOAT) floating point numbers on"
+$ echo "Alpha and Itanium, but if you need G_FLOAT for binary compatibility"
$ echo "with an external library or existing data, you may wish to disable"
$ echo "the IEEE math option."
$ bool_dflt = use_ieee_math
@@ -2929,6 +2929,11 @@ $!
$ IF use_ieee_math
$ THEN
$ extra_flags = "''extra_flags'" + "/float=ieee/ieee=denorm"
+$ ELSE
+$ IF (archname.EQS."VMS_IA64")
+$ THEN
+$ extra_flags = "''extra_flags'" + "/float=g_float"
+$ ENDIF
$ ENDIF
$ IF be_case_sensitive
$ THEN