diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-26 02:48:23 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-26 02:48:23 +0000 |
commit | 10cc9d2a36974e2e1175dbda57d8d05e2b0ce49e (patch) | |
tree | e1e4f9735fc7ee12c9722ea1365f6d3d9155a383 /configure.com | |
parent | 6b49d2665cf5b4cee8758bc654f9290f3855049e (diff) | |
download | perl-10cc9d2a36974e2e1175dbda57d8d05e2b0ce49e.tar.gz |
Rename use64bits to use64bitint;
rename usefull64bits to use64bitall.
p4raw-id: //depot/cfgperl@5261
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.com b/configure.com index c3f3b71855..813127ca4d 100644 --- a/configure.com +++ b/configure.com @@ -41,7 +41,7 @@ $ ans = "" $ macros = "" $ use_vmsdebug_perl = "N" $ use_debugging_perl = "Y" -$ use_64bit = "n" +$ use_64bitint = "n" $ C_Compiler_Replace = "CC=" $ Thread_Live_Dangerously = "MT=" $ use_two_pot_malloc = "N" @@ -1746,15 +1746,15 @@ $ 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)" -$ dflt = use_64bit -$ rp = "Build with 64 bits? [''dflt'] " +$ dflt = use_64bitint +$ rp = "Build with 64 bit integers and 128 bit floating point variable? [''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" +$ use_64bitint="Y" $ ELSE -$ use_64bit="N" +$ use_64bitint="N" $ ENDIF $ ENDIF $! |