diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2012-06-19 17:59:29 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2012-06-19 17:59:29 +0100 |
commit | 10bd8f8c3feeb1510909a739abdd6981f285897e (patch) | |
tree | d2af1417aece0d1ff8c000f3882c9529cfb2c7d2 /win32 | |
parent | de07dec76ed63b24940987118094766152ebaa1b (diff) | |
download | perl-10bd8f8c3feeb1510909a739abdd6981f285897e.tar.gz |
Use ll rather than I64 for win32/config*.gc64 format strings
The corresponding types are long long rather than __int64 so this makes
more sense and matches proposed diffs from the land of Strawberry Perl
for supporting 32-bit builds with 64-bit ints on Windows (hopefully
coming up soon...).
Diffstat (limited to 'win32')
-rw-r--r-- | win32/config.gc64 | 22 | ||||
-rw-r--r-- | win32/config_H.gc64 | 10 |
2 files changed, 16 insertions, 16 deletions
diff --git a/win32/config.gc64 b/win32/config.gc64 index c0f79bcc5e..d5a2e024b7 100644 --- a/win32/config.gc64 +++ b/win32/config.gc64 @@ -751,7 +751,7 @@ installvendorman3dir='' installvendorscript='' intsize='4' issymlink='' -ivdformat='"I64d"' +ivdformat='"lld"' ivsize='8' ivtype='long long' known_extensions='~static_ext~ ~dynamic_ext~ ~nonxs_ext~' @@ -895,15 +895,15 @@ sLOCALTIME_min="0" sPRIEUldbl='"E"' sPRIFUldbl='"F"' sPRIGUldbl='"G"' -sPRIXU64='"I64X"' -sPRId64='"I64d"' +sPRIXU64='"llX"' +sPRId64='"lld"' sPRIeldbl='"e"' sPRIfldbl='"f"' sPRIgldbl='"g"' -sPRIi64='"I64i"' -sPRIo64='"I64o"' -sPRIu64='"I64u"' -sPRIx64='"I64x"' +sPRIi64='"lli"' +sPRIo64='"llo"' +sPRIu64='"llu"' +sPRIx64='"llx"' sSCNfldbl='"f"' sched_yield='' scriptdir='~INST_TOP~~INST_VER~\bin' @@ -1047,12 +1047,12 @@ usevendorprefix='undef' usevfork='false' usrinc='/usr/include' uuname='' -uvXUformat='"I64X"' -uvoformat='"I64o"' +uvXUformat='"llX"' +uvoformat='"llo"' uvsize='8' uvtype='unsigned long long' -uvuformat='"I64u"' -uvxformat='"I64x"' +uvuformat='"llu"' +uvxformat='"llx"' vaproto='undef' vendorarch='' vendorarchexp='' diff --git a/win32/config_H.gc64 b/win32/config_H.gc64 index 60f7e3dce9..80eb6ac6d0 100644 --- a/win32/config_H.gc64 +++ b/win32/config_H.gc64 @@ -4344,11 +4344,11 @@ * This symbol defines the format string used for printing a Perl NV * using %g-ish floating point format. */ -#define IVdf "I64d" /**/ -#define UVuf "I64u" /**/ -#define UVof "I64o" /**/ -#define UVxf "I64x" /**/ -#define UVXf "I64X" /**/ +#define IVdf "lld" /**/ +#define UVuf "llu" /**/ +#define UVof "llo" /**/ +#define UVxf "llx" /**/ +#define UVXf "llX" /**/ #define NVef "e" /**/ #define NVff "f" /**/ #define NVgf "g" /**/ |