From 6c9b11b35e300955587403bc14b8fa0a9ebe458d Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 15 Nov 2001 16:09:34 +0000 Subject: Fix for AIX compile and unsigned/signed typedefs. Peter E, Tatsuo, Andreas --- configure.in | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index cd3bac3cfa..c223ce51b6 100644 --- a/configure.in +++ b/configure.in @@ -1169,6 +1169,12 @@ else fi AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any type]) +# Some platforms predefine the types int8, int16, etc. Only check +# a (hopefully) representative subset. Don't use AC_CHECK_TYPE, which +# doesn't work the way we want to. +AC_CHECK_SIZEOF(int8, 0) +AC_CHECK_SIZEOF(uint8, 0) + PGAC_FUNC_POSIX_SIGNALS -- cgit v1.2.3