diff --git a/ChangeLog b/ChangeLog index 55b349daca..ee94c7d733 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25,6 +25,9 @@ Changes in version 0.2.0.14-alpha - 2007-12-?? - Make "GETINFO/desc-annotations/id/" actually work. - Make PublishServerDescriptor default to 1, so the default doesn't have to change as we invent new directory protocol versions. + - Fix test for rlim_t on OSX 10.3: sys/resource.h doesn't want to + be included unless sys/time.h is already included. Fixes + bug 553. Bugfix on 0.2.0.x. o Minor features: - If BridgeRelay is set to 1, then the default for 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 #endif +#ifdef HAVE_SYS_TIME_H +#include +#endif #ifdef HAVE_SYS_RESOURCE_H #include #endif