mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
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
This commit is contained in:
parent
fe006ad880
commit
3a85c9fa65
@ -25,6 +25,9 @@ Changes in version 0.2.0.14-alpha - 2007-12-??
|
|||||||
- Make "GETINFO/desc-annotations/id/<OR digest>" actually work.
|
- Make "GETINFO/desc-annotations/id/<OR digest>" actually work.
|
||||||
- Make PublishServerDescriptor default to 1, so the default doesn't
|
- Make PublishServerDescriptor default to 1, so the default doesn't
|
||||||
have to change as we invent new directory protocol versions.
|
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:
|
o Minor features:
|
||||||
- If BridgeRelay is set to 1, then the default for
|
- If BridgeRelay is set to 1, then the default for
|
||||||
|
@ -397,6 +397,9 @@ AC_CHECK_TYPES([rlim_t], , ,
|
|||||||
[#ifdef HAVE_SYS_TYPES_H
|
[#ifdef HAVE_SYS_TYPES_H
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_SYS_TIME_H
|
||||||
|
#include <sys/time.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_SYS_RESOURCE_H
|
#ifdef HAVE_SYS_RESOURCE_H
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user