From bb63ff844e818d188da4fed3c016e0a4eecbbf25 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Thu, 30 Jan 2020 18:54:42 +1100 Subject: [PATCH] Look in inttypes.h for UINT32_MAX. Should prevent warnings on at least some AIX versions. --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index b689db4b5..bb392ca09 100644 --- a/configure.ac +++ b/configure.ac @@ -3664,6 +3664,9 @@ AC_CHECK_DECLS([UINT32_MAX], , , [[ #ifdef HAVE_SYS_LIMITS_H # include #endif +#ifdef HAVE_INTTYPES_H +# include +#endif #ifdef HAVE_LIMITS_H # include #endif -- 2.47.3