Re: [Mesa-dev] strcasecmp() not found w/ MSVC

2013-10-17 Thread Paul Berry
On 17 October 2013 12:35, Brian Paul wrote: > Hi Paul, > > It looks like MSVC doesn't have the strcasecmp() function you recently > employed in src/glsl/glsl_parser.yy. > > Looks like the work-around is _stricmp, per > http://stackoverflow.com/**questions/3694723/error-c3861-** > strcasecmp-ident

[Mesa-dev] strcasecmp() not found w/ MSVC

2013-10-17 Thread Brian Paul
Hi Paul, It looks like MSVC doesn't have the strcasecmp() function you recently employed in src/glsl/glsl_parser.yy. Looks like the work-around is _stricmp, per http://stackoverflow.com/questions/3694723/error-c3861-strcasecmp-identifier-not-found-in-visual-studio-2008/3694738#3694738 I'll lo