From 075ac80d72cf2669f4b94d3a6808b2477f7ea611 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 6 Jan 2009 15:38:44 +0000 Subject: Doesn't seem like a good idea to be doing AC_CHECK_SIZEOF(void *) so much earlier than all the other sizeof checks, and it certainly fails to follow the order suggested at the file head. Rearrange. --- src/include/pg_config.h.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 5ba3ca8260..308f2bb6a3 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -684,6 +684,9 @@ /* The size of `unsigned long', as computed by sizeof. */ #undef SIZEOF_UNSIGNED_LONG +/* The size of `void *', as computed by sizeof. */ +#undef SIZEOF_VOID_P + /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS -- cgit v1.2.1