Declare strptime when using MSL headers on OS X.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2005-03-27 08:38:34 +00:00
parent f0756afed9
commit dcbd3762e8

View File

@@ -127,6 +127,12 @@ wxCUSTOM_TYPE_INFO(wxDateTime, wxToStringConverter<wxDateTime> , wxFromStringCon
#undef HAVE_STRPTIME
#endif // broken strptime()
#if defined(HAVE_STRPTIME) && defined(__DARWIN__) && defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS
// configure detects strptime as linkable because it's in the OS X
// System library but MSL headers don't declare it.
char *strptime(const char *, const char *, struct tm *);
#endif
#if defined(__MWERKS__) && wxUSE_UNICODE
#include <wtime.h>
#endif