From: Robin Dunn Date: Tue, 7 Nov 2006 20:29:57 +0000 (+0000) Subject: Use the native vswprintf on OSX X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/047fa46b8a3aa189d0827bf2d56882983eb0b964?hp=6750264e508ea1bc13d20b8d583c147e9b04da70 Use the native vswprintf on OSX git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43171 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index c76b7d7a21..ffdebb6934 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -881,10 +881,8 @@ WXDLLIMPEXP_BASE bool wxOKlibc(); /* for internal use */ /* MinGW MSVCRT has non-standard vswprintf() (for MSVC compatibility presumably) and normally _vsnwprintf() is used instead - - vswprintf() under (early versions of) OS X is buggy */ -#if defined(HAVE_VSWPRINTF) && (defined(__MINGW32__) || defined(__DARWIN__)) +#if defined(HAVE_VSWPRINTF) && defined(__MINGW32__) #undef HAVE_VSWPRINTF #endif