1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Fix for AIX compile and unsigned/signed typedefs.

Peter E, Tatsuo, Andreas
This commit is contained in:
Bruce Momjian
2001-11-15 16:09:34 +00:00
parent a6348ae332
commit 6c9b11b35e
3 changed files with 27 additions and 8 deletions

View File

@@ -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