Re: [Mesa-dev] [PATCH] glsl: Generalize MSVC fix for strcasecmp().

2013-10-27 Thread Ian Romanick
On 10/26/2013 10:32 AM, Paul Berry wrote: > This will let us use strcasecmp() from anywhere inside Mesa without > having to worry about the fact that it doesn't exist in MSVC. Yeah, this looks like what I had in mind. Reviewed-by: Ian Romanick > --- > src/glsl/glsl_parser.yy | 8 +--- > sr

Re: [Mesa-dev] [PATCH] glsl: Generalize MSVC fix for strcasecmp().

2013-10-26 Thread Kenneth Graunke
On 10/26/2013 10:32 AM, Paul Berry wrote: > This will let us use strcasecmp() from anywhere inside Mesa without > having to worry about the fact that it doesn't exist in MSVC. > --- > src/glsl/glsl_parser.yy | 8 +--- > src/mesa/main/imports.h | 1 + > 2 files changed, 2 insertions(+), 7 delet

[Mesa-dev] [PATCH] glsl: Generalize MSVC fix for strcasecmp().

2013-10-26 Thread Paul Berry
This will let us use strcasecmp() from anywhere inside Mesa without having to worry about the fact that it doesn't exist in MSVC. --- src/glsl/glsl_parser.yy | 8 +--- src/mesa/main/imports.h | 1 + 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/glsl/glsl_parser.yy b/src/gl