]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Look in inttypes.h for UINT32_MAX.
authorDarren Tucker <dtucker@dtucker.net>
Thu, 30 Jan 2020 07:54:42 +0000 (18:54 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Thu, 30 Jan 2020 07:54:42 +0000 (18:54 +1100)
Should prevent warnings on at least some AIX versions.

configure.ac

index b689db4b5c563223a6dfc8a3d65e90a88bf4807b..bb392ca09aba74d89f55a00948b3807fd992b06a 100644 (file)
@@ -3664,6 +3664,9 @@ AC_CHECK_DECLS([UINT32_MAX], , , [[
 #ifdef HAVE_SYS_LIMITS_H
 # include <sys/limits.h>
 #endif
+#ifdef HAVE_INTTYPES_H
+# include <inttypes.h>
+#endif
 #ifdef HAVE_LIMITS_H
 # include <limits.h>
 #endif