diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-01-06 15:38:44 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-01-06 15:38:44 +0000 |
commit | 075ac80d72cf2669f4b94d3a6808b2477f7ea611 (patch) | |
tree | f62fd5866c819494b31c01951469c5dcaefa65b6 /src | |
parent | 7ffe657225ad38b912688769ffb58e3d450ef17d (diff) |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 5ba3ca82604..308f2bb6a31 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 |