]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixes after removal of palmos/gccpriv.h.
authorWłodzimierz Skiba <abx@abx.art.pl>
Wed, 19 Jan 2005 06:48:42 +0000 (06:48 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Wed, 19 Jan 2005 06:48:42 +0000 (06:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31483 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/platform.h
include/wx/string.h

index 7d82a9cef5d9d6b49ae24cc694f070aba7cc85fb..a7a9921378ffd313a5b356a603ca3c3db4957b13 100644 (file)
 #   include "wx/msw/wince/libraries.h"
 #endif
 
+/* Force inclusion of main PalmOS header: */
+#ifdef __WXPALMOS__
+#   include <PalmOS.h>
+#   undef Abs
+#endif
+
 /*
    This macro can be used to test the gcc version and can be used like this:
 
    This macro can be used to check that the version of mingw32 compiler is
    at least maj.min
  */
-#if defined(__WXPALMOS__)
-#    include "wx/palmos/gccpriv.h"
-#elif ( defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || \
+#if ( defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || \
     defined( __CYGWIN__ ) || \
       (defined(__WATCOMC__) && __WATCOMC__ >= 1200) ) && \
-    !defined(__DOS__) && !defined(__WXMOTIF__) && !defined(__WXGTK__) && !defined(__WXX11__)
+    !defined(__DOS__) && \
+    !defined(__WXMOTIF__) && \
+    !defined(__WXGTK__) && \
+    !defined(__WXX11__) && \
+    !defined(__WXPALMOS__)
 #    include "wx/msw/gccpriv.h"
 #else
 #    undef wxCHECK_W32API_VERSION
index a2c14c11fbacb31121076bb2d63db99699dbf94a..4162fe4fc817bc2f3d0d9b19ef5e33f2812b11c0 100644 (file)
@@ -132,7 +132,8 @@ inline int Stricmp(const char *psz1, const char *psz2)
   return stricmp(psz1, psz2);
 #elif defined(__WXPM__)
   return stricmp(psz1, psz2);
-#elif defined(HAVE_STRCASECMP_IN_STRING_H) || \
+#elif defined(__WXPALMOS__) || \
+      defined(HAVE_STRCASECMP_IN_STRING_H) || \
       defined(HAVE_STRCASECMP_IN_STRINGS_H) || \
       defined(__GNUWIN32__)
   return strcasecmp(psz1, psz2);