aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorJanne Peltonen <janne.peltonen@nokia.com>2022-03-25 14:10:23 +0200
committerPetri Savolainen <petri.savolainen@nokia.com>2022-03-31 11:43:31 +0300
commitcdc5358b0067dab6da858d5341c40152969294c8 (patch)
tree2118df19467d3bf5940beb723af20e02e0340a83 /configure.ac
parent77075e273be4b3a4bd2a9626bfedef166a95bcfd (diff)
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 <janne.peltonen@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 0 insertions, 10 deletions
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
##########################################################################