From 0cfcc619b08715c1835c6b2ec4fbf8e86f893413 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sun, 25 Apr 2004 23:47:26 +0000 Subject: [PATCH] Check for machine/limits.h in addition to sys/limits.h svn:r1705 --- trunk/configure.in | 2 +- trunk/src/common/util.c | 3 +++ trunk/src/or/or.h | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/trunk/configure.in b/trunk/configure.in index 1a4b9ee36d..98bc3d426b 100644 --- a/trunk/configure.in +++ b/trunk/configure.in @@ -137,7 +137,7 @@ AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/stat.h sy dnl These headers are not essential -AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/wait.h sys/limits.h netinet/in.h arpa/inet.h) +AC_CHECK_HEADERS(stdint.h sys/types.h inttypes.h sys/wait.h sys/limits.h netinet/in.h arpa/inet.h machine/limits.h) AC_CHECK_FUNCS(gettimeofday ftime socketpair uname inet_aton strptime) AC_REPLACE_FUNCS(strlcat strlcpy) diff --git a/trunk/src/common/util.c b/trunk/src/common/util.c index 3374b951e7..fb92681e93 100644 --- a/trunk/src/common/util.c +++ b/trunk/src/common/util.c @@ -30,6 +30,9 @@ #ifdef HAVE_SYS_LIMITS_H #include #endif +#ifdef HAVE_MACHINE_LIMITS_H +#include +#endif #ifdef HAVE_SYS_TYPES_H #include /* Must be included before sys/stat.h for Ultrix */ #endif diff --git a/trunk/src/or/or.h b/trunk/src/or/or.h index f3f28f4dae..10b8b63437 100644 --- a/trunk/src/or/or.h +++ b/trunk/src/or/or.h @@ -37,6 +37,9 @@ #ifdef HAVE_SYS_LIMITS_H #include #endif +#ifdef HAVE_MACHINE_LIMITS_H +#include +#endif #ifdef HAVE_SYS_TYPES_H #include /* Must be included before sys/stat.h for Ultrix */ #endif