From 2dce793e22e509b8da3f672cb71ade0f7532024b Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sun, 23 Apr 2000 16:35:06 +0000 Subject: [PATCH] Added #define to resolve strcasecmp/stricmp issue under OS/2 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7250 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/motif/xmcombo/xmcombo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/motif/xmcombo/xmcombo.c b/src/motif/xmcombo/xmcombo.c index f612df4e95..bfabe8b116 100644 --- a/src/motif/xmcombo/xmcombo.c +++ b/src/motif/xmcombo/xmcombo.c @@ -116,8 +116,10 @@ #include /* --- Systemspezifische Definitionen */ -#ifdef VMS +#if defined(VMS) #define strcasecmp(s1, s2) strcmp(s1, s2) +#elif defined(__EMX__) +#define strcasecmp stricmp #endif /* --- sonstiger Quark */