From: Ryan Norton Date: Mon, 11 Oct 2004 15:38:05 +0000 (+0000) Subject: temp. solution to get unicode to work on 10.3 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e40bae72d42ca9ac04d5d47c97acc867d9be3da6?hp=e0ad14ca47650b13d643cb28af2b5b25c7d08e06 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 --- diff --git a/include/wx/platform.h b/include/wx/platform.h index aed9b04776..06886d705a 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -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 +#endif + #endif /* _WX_PLATFORM_H_ */