From edb4ba5fdb8358d007ff9cfcd5c4f5420627599c Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 17 Dec 2006 01:59:03 +0000 Subject: [PATCH] We now check for these: int16_t, uint16_t, int32_t, uint32_t, and int64_t. --- configure.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.in b/configure.in index 35ccbcc6..890a76bf 100644 --- a/configure.in +++ b/configure.in @@ -339,6 +339,11 @@ AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(long long) AC_CHECK_SIZEOF(short) +AC_CHECK_SIZEOF(int16_t) +AC_CHECK_SIZEOF(uint16_t) +AC_CHECK_SIZEOF(int32_t) +AC_CHECK_SIZEOF(uint32_t) +AC_CHECK_SIZEOF(int64_t) AC_CHECK_SIZEOF(off_t) AC_CHECK_SIZEOF(off64_t) -- 2.34.1