[openssh-commits] [openssh] 01/01: Look in inttypes.h for UINT32_MAX.

git+noreply at mindrot.org git+noreply at mindrot.org
Thu Jan 30 18:55:18 AEDT 2020


This is an automated email from the git hooks/post-receive script.

dtucker pushed a commit to branch master
in repository openssh.

commit bb63ff844e818d188da4fed3c016e0a4eecbbf25
Author: Darren Tucker <dtucker at dtucker.net>
Date:   Thu Jan 30 18:54:42 2020 +1100

    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 b689db4b..bb392ca0 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

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list