diff options
author | Craig A. Berry <craigberry@mac.com> | 2008-02-11 04:17:45 +0000 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2008-02-11 04:17:45 +0000 |
commit | d207eff153a616ce3216ea5508d8c251ee3e5466 (patch) | |
tree | cbd11507793d07670d762a49f4fd749ca4b694c0 /configure.com | |
parent | dd568cb6980f05208b29e675f2bbb621acbef977 (diff) | |
download | perl-d207eff153a616ce3216ea5508d8c251ee3e5466.tar.gz |
Correct quad-related %Config variables on VMS.
p4raw-id: //depot/perl@33275
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/configure.com b/configure.com index 501ade35e4..d915e6cfba 100644 --- a/configure.com +++ b/configure.com @@ -3183,9 +3183,8 @@ $! perllibs should be libs with all non-core libs (such as gdbm) removed. $! $ perllibs=libs $! -$! Are we 64 bit? $! -$ IF use64bitint .OR. use64bitint .EQS. "define" +$ IF archname .NES. "VMS_VAX" $ THEN $ d_PRId64 = "define" $ d_PRIu64 = "define" @@ -3201,7 +3200,11 @@ $ sPRIx64 = """Lx""" $ d_quad = "define" $ quadtype = "long long" $ uquadtype = "unsigned long long" -$ quadkind = "QUAD_IS_LONG_LONG" +$ quadkind = "3" +$! +$ d_frexpl = "define" +$ d_modfl = "define" +$ d_modflproto = "define" $ ELSE $ d_PRId64 = "undef" $ d_PRIXU64 = "undef" @@ -3215,17 +3218,10 @@ $ sPRIo64 = "" $ sPRIu64 = "" $ sPRIx64 = "" $ d_quad = "undef" -$ quadtype = "long" -$ uquadtype = "unsigned long" -$ quadkind = "QUAD_IS_LONG" -$ ENDIF +$ quadtype = "undef" +$ uquadtype = "undef" +$ quadkind = "undef" $! -$ IF archname .NES. "VMS_VAX" -$ THEN -$ d_frexpl = "define" -$ d_modfl = "define" -$ d_modflproto = "define" -$ ELSE $ d_frexpl = "undef" $ d_modfl = "undef" $ d_modflproto = "undef" |