]> git.saurik.com Git - wxWidgets.git/commitdiff
Use the native vswprintf on OSX
authorRobin Dunn <robin@alldunn.com>
Tue, 7 Nov 2006 20:29:57 +0000 (20:29 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 7 Nov 2006 20:29:57 +0000 (20:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43171 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/wxchar.h

index c76b7d7a210004c6241c0e9ecc1e8b995bc9111d..ffdebb6934aa82cb3df6486d4eaa5fd26f6a620e 100644 (file)
@@ -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