From: Darren Tucker Date: Thu, 30 Jan 2020 07:54:42 +0000 (+1100) Subject: Look in inttypes.h for UINT32_MAX. X-Git-Tag: V_8_2_P1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb63ff844e818d188da4fed3c016e0a4eecbbf25;p=thirdparty%2Fopenssh-portable.git Look in inttypes.h for UINT32_MAX. Should prevent warnings on at least some AIX versions. --- 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