diff options
author | Craig A. Berry <craigberry@mac.com> | 1999-11-09 12:16:14 -0600 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-11-13 17:45:39 +0000 |
commit | 8f9bf0bfe2a21cd688795a0fff8771c2e801fd31 (patch) | |
tree | 4478a0b5cd3c63d19f705d6510e73aa4f6f71c69 /configure.com | |
parent | 140554665c10264faba3f60819106d3921665365 (diff) | |
download | perl-8f9bf0bfe2a21cd688795a0fff8771c2e801fd31.tar.gz |
Applied manually:
To: perl5-porters@perl.org, VMSPERL@perl.org
Subject: [PATCH 5.005_62] patches required to build on VMS
Message-Id: <4.2.2.19991109173839.00d12630@mmtnt11.metamor.com>
p4raw-id: //depot/cfgperl@4564
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/configure.com b/configure.com index a9ed05be38..cbc3bb7e32 100644 --- a/configure.com +++ b/configure.com @@ -1724,7 +1724,7 @@ $! $! 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 "This version of perl has experimental support for building with $ 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 @@ -1742,26 +1742,6 @@ $ use_64bit="N" $ ENDIF $ 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 |