diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2011-04-27 14:55:18 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2011-04-27 14:55:18 -0400 |
commit | 6693fec0e8dec81a9b149494cbdb90e454b6119e (patch) | |
tree | bd31b73c9b504e8949c33d07d39ea82a5e980d97 /src | |
parent | 6693eb72c014e5e8bc2f7f3221ebd5507fdbe8ec (diff) | |
download | postgresql-6693fec0e8dec81a9b149494cbdb90e454b6119e.tar.gz postgresql-6693fec0e8dec81a9b149494cbdb90e454b6119e.zip |
Revert "Force use of "%I64d" format for 64 bit ints on MinGW."
This reverts commit 52d01c2f52c462d29ae0fdfa44c3cae129148a6d.
the UINT64_FORMAT bit broke the b uildfarm, so I'm reverting the whole thing pending further investigation.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/port/win32.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h index 8863bb300cd..34f40041298 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -88,19 +88,6 @@ #define PGDLLEXPORT #endif -/* - * MinGW compilers accept both "%I64d" and "%lld" for 64 bit ints, - * but whine about the latter, so force the former, regardless of what - * configure found. - */ -#if __GNUC__ -#ifdef INT64_FORMAT -#undef INT64_FORMAT -#undef UINT64_FORMAT -#endif -#define INT64_FORMAT "%I64d" -#define UINT64_FORMAT "%I64u" -#endif /* * IPC defines |