diff options
| author | Bruce Momjian | 2001-11-15 16:35:19 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2001-11-15 16:35:19 +0000 |
| commit | ea436f9fcf8c5d7a27459dfedf6bae87b21ef726 (patch) | |
| tree | eef54d28d2e6fd83c2222c8913dd5d6b05e52cb1 /configure.in | |
| parent | 2c1784a9c7b52c0acee88420aeabd6171be76c6e (diff) | |
Well the absolute correct solution would involve all of:
int8, int16, int32, int64 and separately uint8, uint16, uint32, uint64
The previous patch grouped:
int8, int16 and int32
uint8, uint16 and uint32
int64 and uint64 <-- this grouping is wrong on AIX 4.3.3 and below
If you prefer to make 4 groups out of this you could apply this patch.
Andreas
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index c223ce51b65..88b05db3864 100644 --- a/configure.in +++ b/configure.in @@ -1174,6 +1174,8 @@ AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignme # doesn't work the way we want to. AC_CHECK_SIZEOF(int8, 0) AC_CHECK_SIZEOF(uint8, 0) +AC_CHECK_SIZEOF(int64, 0) +AC_CHECK_SIZEOF(uint64, 0) PGAC_FUNC_POSIX_SIGNALS |
