1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

although the check for HAVE_STRUCT_TIMEVAL solved the redefine it is incorrect; lets see if a check for HAVE_GETTIMEOFDAY also works; if gettimeofday() is present then we can assume we have the timezone struct too.

This commit is contained in:
Gunter Knauf 2007-07-04 10:54:15 +00:00
parent 056af4c9ac
commit 3760180320

View File

@ -32,7 +32,7 @@ struct iovec
int ares_writev (SOCKET s, const struct iovec *vector, size_t count);
#define writev(s,vect,count) ares_writev(s,vect,count)
#ifndef HAVE_STRUCT_TIMEVAL
#ifndef HAVE_GETTIMEOFDAY
struct timezone { int dummy; };
#endif