]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/timercmn.cpp
More Motif stuff, minor stubs correction
[wxWidgets.git] / src / common / timercmn.cpp
index a1e02d73a358dd240d6a9f979c8db4f090133cb0..f25a81740926454c68a5a3b70b263708965a5406 100644 (file)
@@ -39,7 +39,8 @@
 #include <sys/timeb.h>
 #endif
 
-#if defined(__linux__) || defined(__SVR4__) || defined(__SYSV__) || defined(__SGI__) || defined(__ALPHA__) || defined(__GNUWIN32__)
+#if defined(__linux__) || defined(__SVR4__) || defined(__SYSV__) || defined(__SGI__) || \
+    defined(__ALPHA__) || defined(__GNUWIN32__) || defined(__FreeBSD__) || defined(__NetBSD__)
 #include <sys/time.h>
 #endif
 
@@ -168,6 +169,8 @@ bool wxGetLocalTime(long *timeZone, int *dstObserved)
   *timeZone = tp->tm_gmtoff; // ???
   *dstObserved = tp->tm_isdst;
 #endif
+#elif defined(__WXSTUBS__)
+  return FALSE;
 #else
 // #error wxGetLocalTime not implemented.
   struct timeval tp;