diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-01 18:17:54 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-01 18:17:54 +0000 |
commit | 6b356c8efb963846940ef92952cf77e5b86bd65e (patch) | |
tree | 82aab24c903fb5c32b16e57ad6f095d823430eec /configure.com | |
parent | 301e812593b886ce092a67093cee831022be6f82 (diff) | |
download | perl-6b356c8efb963846940ef92952cf77e5b86bd65e.tar.gz |
Rename the PRIElfbl, PRIX64, etc, to be PRIEUfldbl, PRIXU64,
so that case-ignoring systems like DCL can tell them from
PRIefldbl and PRIx64. Apply Merijn's ccversion patches.
p4raw-id: //depot/perl@6982
Diffstat (limited to 'configure.com')
-rw-r--r-- | configure.com | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/configure.com b/configure.com index 176b285847..ae6141eef2 100644 --- a/configure.com +++ b/configure.com @@ -2704,9 +2704,9 @@ $! $ IF use64bitint .OR. use64bitint .EQS. "define" $ THEN $ d_PRId64 = "define" -$ d_PRIEldbl_cap = "define" -$ d_PRIFldbl_cap = "define" -$ d_PRIGldbl_cap = "define" +$ d_PRIEUldbl = "define" +$ d_PRIFUldbl = "define" +$ d_PRIGUldbl = "define" $ d_PRIeldbl = "define" $ d_PRIfldbl = "define" $ d_PRIgldbl = "define" @@ -2714,10 +2714,10 @@ $ d_PRIu64 = "define" $ d_PRIo64 = "define" $ d_PRIx64 = "define" $ sPRId64 = """Ld""" -$ sPRIEldbl_cap = """LE""" -$ sPRIFldbl_cap = """LF""" -$ sPRIGldbl_cap = """LG""" -$ sPRIX64_cap = """LX""" +$ sPRIEUldbl = """LE""" +$ sPRIFUldbl = """LF""" +$ sPRIGUldbl = """LG""" +$ sPRIXU64 = """LX""" $ sPRIeldbl = """Le""" $ sPRIfldbl = """Lf""" $ sPRIgldbl = """Lg""" @@ -2734,10 +2734,10 @@ $ d_isnanl = "define" $ d_modfl = "define" $ ELSE $ d_PRId64 = "undef" -$ d_PRIEldbl_cap = "define" -$ d_PRIFldbl_cap = "define" -$ d_PRIGldbl_cap = "define" -$ d_PRIX64_cap = "undef" +$ d_PRIEUldbl = "define" +$ d_PRIFUldbl = "define" +$ d_PRIGUldbl = "define" +$ d_PRIXU64 = "undef" $ d_PRIeldbl = "define" $ d_PRIfldbl = "undef" $ d_PRIgldbl = "undef" @@ -2745,10 +2745,10 @@ $ d_PRIu64 = "undef" $ d_PRIo64 = "undef" $ d_PRIx64 = "undef" $ sPRId64 = "" -$ sPRIEldbl_cap = """E""" -$ sPRIFldbl_cap = """F""" -$ sPRIGldbl_cap = """G""" -$ sPRIX64_cap = """lX""" +$ sPRIEUldbl = """E""" +$ sPRIFUldbl = """F""" +$ sPRIGUldbl = """G""" +$ sPRIXU64 = """lX""" $ sPRIeldbl = """e""" $ sPRIfldbl = """f""" $ sPRIgldbl = """g""" @@ -4633,10 +4633,10 @@ $ WC "cppstdin='" + cppstdin + "'" $ WC "crosscompile='undef'" $ WC "d_Gconvert='my_gconvert(x,n,t,b)'" $ WC "d_PRId64='" + d_PRId64 + "'" -$ WC "d_PRIEldbl='" + d_PRIEldbl_cap + "'" -$ WC "d_PRIFldbl='" + d_PRIFldbl_cap + "'" -$ WC "d_PRIGldbl='" + d_PRIGldbl_cap + "'" -$ WC "d_PRIX64='" + d_PRIX64_cap + "'" +$ WC "d_PRIEldbl='" + d_PRIEUldbl + "'" +$ WC "d_PRIFldbl='" + d_PRIFUldbl + "'" +$ WC "d_PRIGldbl='" + d_PRIGUldbl + "'" +$ WC "d_PRIX64='" + d_PRIXU64 + "'" $ WC "d_PRIeldbl='" + d_PRIeldbl + "'" $ WC "d_PRIfldbl='" + d_PRIfldbl + "'" $ WC "d_PRIgldbl='" + d_PRIgldbl + "'" @@ -5112,10 +5112,10 @@ $ WC "ranlib='" + "'" $ WC "rd_nodata=' '" $ WC "revision='" + revision + "'" $ WC "sPRId64='" + sPRId64 + "'" -$ WC "sPRIEldbl='" + sPRIEldbl_cap + "'" -$ WC "sPRIFldbl='" + sPRIFldbl_cap + "'" -$ WC "sPRIGldbl='" + sPRIGldbl_cap + "'" -$ WC "sPRIX64='" + sPRIX64_cap + "'" +$ WC "sPRIEldbl='" + sPRIEUldbl + "'" +$ WC "sPRIFldbl='" + sPRIFUldbl + "'" +$ WC "sPRIGldbl='" + sPRIGUldbl + "'" +$ WC "sPRIX64='" + sPRIXU64 + "'" $ WC "sPRIeldbl='" + sPRIeldbl + "'" $ WC "sPRIfldbl='" + sPRIfldbl + "'" $ WC "sPRIgldbl='" + sPRIgldbl + "'" |