Commit 37601803 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

although the check for HAVE_STRUCT_TIMEVAL solved the redefine it is...

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.
parent 056af4c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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