Explorar el Código

fixing cross-compile builds, relates #170

Stasik0 hace 9 años
padre
commit
d1c3a39342
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      src/ua_types.c

+ 2 - 0
src/ua_types.c

@@ -267,11 +267,13 @@ UA_TYPE_AS(UA_DateTime, UA_Int64)
 #define HUNDRED_NANOSEC_PER_SEC (HUNDRED_NANOSEC_PER_USEC * 1000000LL)
 
 #ifdef __MINGW32__
+#ifndef timezone
 struct timezone {
   int tz_minuteswest;
   int tz_dsttime;
 };
 #endif
+#endif
 #ifdef _WIN32
 static const unsigned __int64 epoch = 116444736000000000;
 int gettimeofday(struct timeval *tp, struct timezone *tzp);