Change 30325 by [EMAIL PROTECTED] on 2007/02/16 00:43:07
In configure.com, further disambiguate -Duselongdouble and its
prerequisites from other 64-bit options.
Affected files ...
... //depot/perl/configure.com#251 edit
Differences ...
==== //depot/perl/configure.com#251 (text) ====
Index: perl/configure.com
--- perl/configure.com#250~30217~ 2007-02-11 15:52:35.000000000 -0800
+++ perl/configure.com 2007-02-15 16:43:07.000000000 -0800
@@ -3218,11 +3218,6 @@
$ quadtype = "long long"
$ uquadtype = "unsigned long long"
$ quadkind = "QUAD_IS_LONG_LONG"
-$ d_frexpl = "define"
-$ d_isnan = "define"
-$ d_isnanl = "define"
-$ d_modfl = "define"
-$ d_modflproto = "define"
$ ELSE
$ d_PRId64 = "undef"
$ d_PRIXU64 = "undef"
@@ -3239,13 +3234,28 @@
$ quadtype = "long"
$ uquadtype = "unsigned long"
$ quadkind = "QUAD_IS_LONG"
+$ ENDIF
+$!
+$ IF archname .NES. "VMS_VAX"
+$ THEN
+$ d_frexpl = "define"
+$ d_modfl = "define"
+$ d_modflproto = "define"
+$ ELSE
$ d_frexpl = "undef"
-$ d_isnan = "undef"
-$ d_isnanl = "undef"
$ d_modfl = "undef"
$ d_modflproto = "undef"
$ ENDIF
$!
+$ IF usieee .OR. useieee .EQS. "define"
+$ THEN
+$ d_isnan = "define"
+$ d_isnanl = "define"
+$ ELSE
+$ d_isnan = "undef"
+$ d_isnanl = "undef"
+$ ENDIF
+$!
$! Now some that we build up
$!
$ IF use_threads
End of Patch.