diff options
author | Darren Tucker <dtucker@dtucker.net> | 2020-01-30 08:54:42 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2020-01-30 08:54:42 +0100 |
commit | bb63ff844e818d188da4fed3c016e0a4eecbbf25 (patch) | |
tree | 000f0aadc0a9461457d55799a633f022b1cfc7e4 /configure.ac | |
parent | upstream: use sshpkt_fatal() instead of plain fatal() for (diff) | |
download | openssh-bb63ff844e818d188da4fed3c016e0a4eecbbf25.tar.xz openssh-bb63ff844e818d188da4fed3c016e0a4eecbbf25.zip |
Look in inttypes.h for UINT32_MAX.
Should prevent warnings on at least some AIX versions.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
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 <sys/limits.h> #endif +#ifdef HAVE_INTTYPES_H +# include <inttypes.h> +#endif #ifdef HAVE_LIMITS_H # include <limits.h> #endif |