diff options
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e0b394a5..514408e8 100644 --- a/configure.ac +++ b/configure.ac @@ -392,10 +392,21 @@ AC_CHECK_HEADERS([assert.h errno.h byteswap.h sys/param.h sys/sysctl.h], # Checks for typedefs, structures, and compiler characteristics. ############################################################################### -AC_HEADER_STDBOOL AC_C_INLINE AC_C_RESTRICT +AC_HEADER_STDBOOL + +AC_TYPE_UINT8_T +AC_TYPE_INT32_T +AC_TYPE_UINT32_T +AC_TYPE_INT64_T +AC_TYPE_UINT64_T +AC_TYPE_UINTPTR_T + +AC_CHECK_SIZEOF([unsigned long]) +AC_CHECK_SIZEOF([size_t]) + # The command line tool can copy high resolution timestamps if such # information is availabe in struct stat. Otherwise one second accuracy # is used. Most systems seem to have st_xtim but BSDs have st_xtimespec. |