From cdc5358b0067dab6da858d5341c40152969294c8 Mon Sep 17 00:00:00 2001 From: Janne Peltonen Date: Fri, 25 Mar 2022 14:10:23 +0200 Subject: configure: remove fallbacks for standard int types and inline Remove checking whether the compilation environment supports the inline keyword and the standard fixed-width integer types. This also removes the fallback preprocessor macros that autoconf would create if the keyword or some of the types were not supported. The checking and the fallback mechanism is unnecessary since ODP requires C11 and stdint.h. Signed-off-by: Janne Peltonen Reviewed-by: Petri Savolainen --- configure.ac | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 3e922aa60..2d1084367 100644 --- a/configure.ac +++ b/configure.ac @@ -90,16 +90,6 @@ AM_PROG_LIBTOOL PKG_PROG_PKG_CONFIG -# Checks for typedefs, structures, and compiler characteristics. -AC_C_INLINE -AC_TYPE_SIZE_T -AC_TYPE_SSIZE_T -AC_TYPE_UINT8_T -AC_TYPE_UINT16_T -AC_TYPE_INT32_T -AC_TYPE_UINT32_T -AC_TYPE_UINT64_T - ########################################################################## # Default warning setup ########################################################################## -- cgit v1.2.3