summaryrefslogtreecommitdiff
path: root/configure.com
diff options
context:
space:
mode:
authorCharles Bailey <bailey@newman.upenn.edu>1999-08-23 02:58:55 +0000
committerbailey <bailey@newman.upenn.edu>1999-08-23 02:58:55 +0000
commitfafa4fee6354847ae7fda9f99e5af467d9626f73 (patch)
tree051e88c52e70c6cfa21e230c72aba117cdd40fbf /configure.com
parente86d609f3ac7f91e0d16adf140587c6d9df8abff (diff)
downloadperl-fafa4fee6354847ae7fda9f99e5af467d9626f73.tar.gz
Update VMS configuration procedures for 5.005_60
p4raw-id: //depot/vmsperl@4017
Diffstat (limited to 'configure.com')
-rw-r--r--configure.com21
1 files changed, 21 insertions, 0 deletions
diff --git a/configure.com b/configure.com
index aca42de20b..ac794ebd6d 100644
--- a/configure.com
+++ b/configure.com
@@ -1707,6 +1707,27 @@ $ use_multiplicity="Y"
$ ELSE
$ use_multiplicity="N"
$ ENDIF
+$!
+$! Ask if they want to build with 64-bit support
+$ if (Archname.eqs."VMS_AXP").and.("''f$extract(1,3, f$getsyi(""version""))'".ges."7.1")
+$ THEN
+$ echo "This version of perl has experimental support for building wtih
+$ echo "64 bit integers and 128 bit floating point variables. This gives
+$ echo "a much larger range for perl's mathematical operations. (Note that
+$ echo "does *not* enable 64-bit fileops at the moment, as Dec C doesn't
+$ echo "do that yet)"
+$ echo ""
+$ dflt = use_64bit
+$ rp = "Build with 64 bits? [''dflt'] "
+$ GOSUB myread
+$ if ans.eqs."" then ans = dflt
+$ if (f$extract(0, 1, "''ans'").eqs."Y").or.(f$extract(0, 1, "''ans'").eqs."y")
+$ THEN
+$ use_64bit="Y"
+$ ELSE
+$ use_64bit="N"
+$ ENDIF
+$ ENDIF
$! Ask about threads, if appropriate
$ if (Using_Dec_C.eqs."Yes")
$ THEN