Re: [Mesa-dev] [PATCH] fix compilation of glsl_lexer.ll with msvc

2011-10-31 Thread Ian Romanick
On 10/29/2011 02:50 AM, Kenneth Graunke wrote: On 10/29/2011 01:42 AM, Morgan Armand wrote: strtoull is not supported on msvc (as there is no C99 support). --- src/glsl/glsl_lexer.ll |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/glsl/glsl_lexer.ll b/src/glsl

Re: [Mesa-dev] [PATCH] fix compilation of glsl_lexer.ll with msvc

2011-10-29 Thread Morgan Armand
On 10/29/2011 11:50 AM, Kenneth Graunke wrote: > On 10/29/2011 01:42 AM, Morgan Armand wrote: >> strtoull is not supported on msvc (as there is no C99 support). >> >> --- >> src/glsl/glsl_lexer.ll |4 >> 1 files changed, 4 insertions(+), 0 deletions(-) >> >> diff --git a/src/glsl/glsl_lex

Re: [Mesa-dev] [PATCH] fix compilation of glsl_lexer.ll with msvc

2011-10-29 Thread Kenneth Graunke
On 10/29/2011 01:42 AM, Morgan Armand wrote: > strtoull is not supported on msvc (as there is no C99 support). > > --- > src/glsl/glsl_lexer.ll |4 > 1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/src/glsl/glsl_lexer.ll b/src/glsl/glsl_lexer.ll > index e444536..00065d

[Mesa-dev] [PATCH] fix compilation of glsl_lexer.ll with msvc

2011-10-29 Thread Morgan Armand
strtoull is not supported on msvc (as there is no C99 support). --- src/glsl/glsl_lexer.ll |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/glsl/glsl_lexer.ll b/src/glsl/glsl_lexer.ll index e444536..00065d5 100644 --- a/src/glsl/glsl_lexer.ll +++ b/src/glsl/glsl_lex