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 /uconfig.sh | |
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 'uconfig.sh')
-rwxr-xr-x | uconfig.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/uconfig.sh b/uconfig.sh index 21f91a1501..373db7771f 100755 --- a/uconfig.sh +++ b/uconfig.sh @@ -17,10 +17,10 @@ cpp_stuff='42' crosscompile='undef' d_Gconvert='sprintf((b),"%.*g",(n),(x))' d_SCNfldbl='undef' -d_PRIEldbl='undef' -d_PRIFldbl='undef' -d_PRIGldbl='undef' -d_PRIX64='undef' +d_PRIEUldbl='undef' +d_PRIFUldbl='undef' +d_PRIGUldbl='undef' +d_PRIXU64='undef' d_PRId64='undef' d_PRIeldbl='undef' d_PRIfldbl='undef' @@ -454,10 +454,10 @@ randbits='48' randfunc='drand48' randseedtype='int' rd_nodata='-1' -sPRIEldbl='"llE"' -sPRIFldbl='"llF"' -sPRIGldbl='"llG"' -sPRIX64='"LX"' +sPRIEUldbl='"llE"' +sPRIFUldbl='"llF"' +sPRIGUldbl='"llG"' +sPRIXU64='"LX"' sPRId64='"Ld"' sPRIeldbl='"lle"' sPRIfldbl='"llf"' |