diff options
| author | Peter Eisentraut | 2020-02-21 08:14:03 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2020-02-21 08:20:32 +0000 |
| commit | 957338418b69e9774ccc1bab59f765a62f0aa6f9 (patch) | |
| tree | c4e018e687ecb115bb235f87f8d3c60bcd12331f /configure.in | |
| parent | dca3911a81f0ba823b56c3d4462419c83f385e55 (diff) | |
Require stdint.h
stdint.h belongs to the compiler (as opposed to inttypes.h), so by
requiring a C99 compiler we can also require stdint.h
unconditionally. Remove configure checks and other workarounds for
it.
This also removes a few steps in the required portability adjustments
to the imported time zone code, which can be applied on the next
import.
When using GCC on a platform that is otherwise pre-C99, this will now
require at least GCC 4.5, which is the first release that supplied a
standard-conforming stdint.h if the native platform didn't have it.
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://www.postgresql.org/message-id/flat/5d398bbb-262a-5fed-d839-d0e5cff3c0d7%402ndquadrant.com
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 8adb409558f..140909091a1 100644 --- a/configure.in +++ b/configure.in @@ -1477,8 +1477,6 @@ PGAC_STRUCT_SOCKADDR_UN PGAC_STRUCT_SOCKADDR_STORAGE PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS PGAC_STRUCT_ADDRINFO -AC_TYPE_INTPTR_T -AC_TYPE_UINTPTR_T PGAC_TYPE_LOCALE_T |
