glsl: Generalize MSVC fix for strcasecmp().
authorPaul Berry <stereotype441@gmail.com>
Sat, 26 Oct 2013 17:25:46 +0000 (10:25 -0700)
committerPaul Berry <stereotype441@gmail.com>
Tue, 29 Oct 2013 18:10:56 +0000 (11:10 -0700)
This will let us use strcasecmp() from anywhere inside Mesa without
having to worry about the fact that it doesn't exist in MSVC.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/glsl/glsl_parser.yy
src/mesa/main/imports.h

index 0a0708e9574e8a481b8e26a68b9f62229a4c1713..4ed410574649cfdc1d2e39953a67bb0bd4ed3154 100644 (file)
@@ -66,14 +66,8 @@ static bool match_layout_qualifier(const char *s1, const char *s2,
     */
    if (state->es_shader)
       return strcmp(s1, s2);
-   else {
-#if defined(_MSC_VER)
-      /* MSVC doesn't have a strcasecmp() function; instead it has _stricmp. */
-      return _stricmp(s1, s2);
-#else
+   else
       return strcasecmp(s1, s2);
-#endif
-   }
 }
 %}
 
index 53e40b44546278366d9824cb1d2561a5f5e825cc..d79e2a339f35a3bdc348041780a25be260477a6e 100644 (file)
@@ -141,6 +141,7 @@ static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
 static inline float atanhf(float x) { return (logf(1.0f + x) - logf(1.0f - x)) / 2.0f; }
 static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; }
 #define strtoll(p, e, b) _strtoi64(p, e, b)
+#define strcasecmp(s1, s2) _stricmp(s1, s2)
 #endif
 /*@}*/