From d15cb38dec01fcc8d882706a3fa493517597c76b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 7 Jan 2010 00:25:05 +0000 Subject: Alter the configure script to fail immediately if the C compiler does not provide a working 64-bit integer datatype. As recently noted, we've been broken on such platforms since early in the 8.4 development cycle. Since it took nearly two years for anyone to even notice, it seems that the rationale for continuing to support such platforms has reached the point of non-existence. Rather than thrashing around to try to make it work again, we'll just admit up front that this no longer works. Back-patch to 8.4 since that branch is also broken. We should go around to remove INT64_IS_BUSTED support, but just in HEAD, so that seems like material for a separate commit. --- src/include/pg_config.h.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index a3a80f053b..69799a5042 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -647,7 +647,7 @@ /* Define to 1 if you have the header file. */ #undef HAVE_WINLDAP_H -/* Define to the appropriate snprintf format for 64-bit ints, if any. */ +/* Define to the appropriate snprintf format for 64-bit ints. */ #undef INT64_FORMAT /* Define to build with Kerberos 5 support. (--with-krb5) */ @@ -732,8 +732,7 @@ /* Define to 1 if your declares `struct tm'. */ #undef TM_IN_SYS_TIME -/* Define to the appropriate snprintf format for unsigned 64-bit ints, if any. - */ +/* Define to the appropriate snprintf format for unsigned 64-bit ints. */ #undef UINT64_FORMAT /* Define to 1 to build with assertion checks. (--enable-cassert) */ -- cgit v1.2.1