X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4055ed8281971e3d35bf04177193c27043d42ed1..09d8cc190df922a72d7dc9f9fdc3a51c037a3ca2:/include/wx/string.h diff --git a/include/wx/string.h b/include/wx/string.h index a2c14c11fb..4162fe4fc8 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -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);