]> git.saurik.com Git - wxWidgets.git/commitdiff
No obnoxious warnings if threading is disabled.
authorStefan Neis <Stefan.Neis@t-online.de>
Sat, 31 Dec 2005 18:56:32 +0000 (18:56 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Sat, 31 Dec 2005 18:56:32 +0000 (18:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/datetime.h
src/common/datetime.cpp

index 2f331299ade4cc4d1b9785eec0f810ff6a3a5631..8c1e262147c509cb95b2e086b4307e88b03dce66 100644 (file)
@@ -57,7 +57,7 @@ class WXDLLIMPEXP_BASE wxDateSpan;
 #define wxLocaltime_r localtime_r
 #else
 struct tm *wxLocaltime_r(const time_t*, struct tm*);
-#if !defined(__WINDOWS__)
+#if wxUSE_THREADS && !defined(__WINDOWS__)
      // On Windows, localtime _is_ threadsafe!
 #warning using pseudo thread-safe wrapper for localtime to emulate localtime_r
 #endif
@@ -67,7 +67,7 @@ struct tm *wxLocaltime_r(const time_t*, struct tm*);
 #define wxGmtime_r gmtime_r
 #else
 struct tm *wxGmtime_r(const time_t*, struct tm*);
-#if !defined(__WINDOWS__)
+#if wxUSE_THREADS && !defined(__WINDOWS__)
      // On Windows, gmtime _is_ threadsafe!
 #warning using pseudo thread-safe wrapper for gmtime to emulate gmtime_r
 #endif
index 009149c105ba5ac60c6dd88dbb88e4d4dcf1b83f..c797fc0144ee085109bdde0917d4e821306d416f 100644 (file)
@@ -169,7 +169,7 @@ wxCUSTOM_TYPE_INFO(wxDateTime, wxToStringConverter<wxDateTime> , wxFromStringCon
     #endif
 #endif // !WX_TIMEZONE && !WX_GMTOFF_IN_TM
 
-#if wxUSE_THREADS
+#if (!defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)) && wxUSE_THREADS && !defined(__WINDOWS__)
 static wxMutex timeLock;
 #endif