diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8bc96bb45..268fe1a4b 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -3541,6 +3541,17 @@ fprint_ll(FILE *f, long long n) | |||
3541 | ) | 3541 | ) |
3542 | fi | 3542 | fi |
3543 | 3543 | ||
3544 | AC_CHECK_DECLS([UINT32_MAX], , , [[ | ||
3545 | #ifdef HAVE_SYS_LIMITS_H | ||
3546 | # include <sys/limits.h> | ||
3547 | #endif | ||
3548 | #ifdef HAVE_LIMITS_H | ||
3549 | # include <limits.h> | ||
3550 | #endif | ||
3551 | #ifdef HAVE_STDINT_H | ||
3552 | # include <stdint.h> | ||
3553 | #endif | ||
3554 | ]]) | ||
3544 | 3555 | ||
3545 | # More checks for data types | 3556 | # More checks for data types |
3546 | AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [ | 3557 | AC_CACHE_CHECK([for u_int type], ac_cv_have_u_int, [ |