diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-08-19 17:21:17 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-08-19 17:21:17 +0000 |
commit | 7979c0277d84889f331716f5a65d56bd01378775 (patch) | |
tree | 50481b69c70b5f97f655ef244802887e5e087ab3 | |
parent | ffc8cbb3cdd38155c162da0cd5fb785b4ee77df4 (diff) | |
download | tor-7979c0277d84889f331716f5a65d56bd01378775.tar.gz tor-7979c0277d84889f331716f5a65d56bd01378775.zip |
Workaround for oddity in cygwin autoconf
svn:r2301
-rw-r--r-- | src/common/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.h b/src/common/util.h index 3554b3673d..ba5319e563 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -26,7 +26,7 @@ #elif defined(_MSC_VER) #include <winsock.h> #endif -#ifndef HAVE_STRUCT_TIMEVAL_TV_SEC +#if !defined(HAVE_GETTIMEOFDAY) && !defined(HAVE_STRUCT_TIMEVAL_TV_SEC) struct timeval { time_t tv_sec; unsigned int tv_usec; |