]> git.saurik.com Git - wxWidgets.git/commitdiff
OS X compilation fix
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 11 Jun 2007 07:12:37 +0000 (07:12 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 11 Jun 2007 07:12:37 +0000 (07:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46398 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/wxcrtbase.h

index a5511d001859869c1f3eeb665fc11361ad4bbb78..3307319f27e9d400d7d3f103bddd4774ef188b79 100644 (file)
@@ -173,15 +173,16 @@ WXDLLIMPEXP_BASE void *calloc( size_t num, size_t size );
     #define wxCRT_StrxfrmW   wcsxfrm
 
     /* Almost all compiler have strdup(), but not quite all: CodeWarrior under
-       Mac and VC++ for Windows CE don't provide it */
+       Mac and VC++ for Windows CE don't provide it; additionally, gcc under
+       Mac doesn't have wcsdup: */
     #if defined(__VISUALC__) && __VISUALC__ >= 1400
         #define wxCRT_StrdupA _strdup
     #elif !(defined(__MWERKS__) && defined(__WXMAC__)) && !defined(__WXWINCE__)
         #define wxCRT_StrdupA strdup
     #endif
-    #ifdef __WINDOWS__
+    #if defined(__WINDOWS__)
         #define wxCRT_StrdupW _wcsdup
-    #else
+    #elif !defined(__DARWIN__)
         #define wxCRT_StrdupW wcsdup
     #endif
 #else