diff options
author | Darren Tucker <dtucker@dtucker.net> | 2020-02-06 01:28:14 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2020-02-06 02:21:49 +0100 |
commit | 849a9b87144f8a5b1771de6c85e44bfeb86be9a9 (patch) | |
tree | e6045aa86c105e75c93270f8ae881376bf47e5ce /configure.ac | |
parent | depend (diff) | |
download | openssh-849a9b87144f8a5b1771de6c85e44bfeb86be9a9.tar.xz openssh-849a9b87144f8a5b1771de6c85e44bfeb86be9a9.zip |
Don't look for UINT32_MAX in inttypes.h
... unless we are actually going to use it. Fixes build on HP-UX
without the potential impact to other platforms of a header change
shortly before release.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index bb392ca09..b689db4b5 100644 --- a/configure.ac +++ b/configure.ac @@ -3664,9 +3664,6 @@ 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 |