From c1bafdfc4539c4a863a9b8823d08907355216650 Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Sun, 23 Dec 2007 04:54:41 +0000 Subject: [PATCH] Correction. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2882 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/port.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/port.h b/sc2/src/port.h index cbb50f87a..5cbd2b509 100644 --- a/sc2/src/port.h +++ b/sc2/src/port.h @@ -49,9 +49,9 @@ // conflicts with SDL. #if !defined(HAVE_STRICMP) && !defined(HAVE_STRCASECMP_UQM) # error Neither stricmp() nor strcasecmp() is available. -#elif defined(HAVE_STRCASECMP_UQM) +#elif !defined(HAVE_STRICMP) # define stricmp strcasecmp -#elif defined(HAVE_STRICMP) +#elif !defined(HAVE_STRCASECMP_UQM) # define strcasecmp stricmp #else // We should take care not to define anything if both strcasecmp() and