diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-12-22 17:30:12 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-12-22 17:30:12 +0000 |
commit | 3a85c9fa65a2d6fd7d0b65726a3bbc471d39a5af (patch) | |
tree | 9d39afe0ddd37c010dc6d243c3b3a31e05dc3caf /configure.in | |
parent | fe006ad880b7183f4a430a83515eeaff87ca638a (diff) | |
download | tor-3a85c9fa65a2d6fd7d0b65726a3bbc471d39a5af.tar.gz tor-3a85c9fa65a2d6fd7d0b65726a3bbc471d39a5af.zip |
r17340@catbus: nickm | 2007-12-22 12:30:07 -0500
Try to resolve bug 553 by adding a sys/time.h include to the autoconf test for rlim_t.
svn:r12931
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 535d838e62..f6bdcdaffc 100644 --- a/configure.in +++ b/configure.in @@ -397,6 +397,9 @@ AC_CHECK_TYPES([rlim_t], , , [#ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif +#ifdef HAVE_SYS_TIME_H +#include <sys/time.h> +#endif #ifdef HAVE_SYS_RESOURCE_H #include <sys/resource.h> #endif |