mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-03-11 09:17:38 +00:00
Define UINT32_MAX if needed.
This commit is contained in:
parent
7169e31121
commit
2912596aec
11
configure.ac
11
configure.ac
@ -3541,6 +3541,17 @@ fprint_ll(FILE *f, long long n)
|
||||
)
|
||||
fi
|
||||
|
||||
AC_CHECK_DECLS([UINT32_MAX], , , [[
|
||||
#ifdef HAVE_SYS_LIMITS_H
|
||||
# include <sys/limits.h>
|
||||
#endif
|
||||
#ifdef HAVE_LIMITS_H
|
||||
# include <limits.h>
|
||||
#endif
|
||||
#ifdef HAVE_STDINT_H
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
]])
|
||||
|
||||
# More checks for data types
|
||||
AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [
|
||||
|
Loading…
Reference in New Issue
Block a user