temp. solution to get unicode to work on 10.3

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29782 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2004-10-11 15:38:05 +00:00
parent e0ad14ca47
commit e40bae72d4

View File

@@ -518,5 +518,14 @@
# define wxUSE_WXDIB 1
#endif
/*
We need AvailabilityMacros.h for ifdefing out things that don't exist on
OSX 10.2 and lower
FIXME: We need a better way to detect for 10.3 then including a system header
*/
#ifdef __DARWIN__
#include <AvailabilityMacros.h>
#endif
#endif /* _WX_PLATFORM_H_ */