[blfs-dev] webkitgtk-2.0.4 and Bison-3.0

2013-08-24 Thread John Burrell
It looks as though Bison-3.0 is causing webkitgtk to fail as well. After about 2.5 hrs of compilation I got: DerivedSources/ANGLE/glslang.cpp: In function 'int yylex(YYSTYPE*, yyscan_t)': DerivedSources/ANGLE/glslang.cpp:157:21: warning: comparison between signed and unsigned integer

Re: [blfs-dev] webkitgtk-2.0.4 and Bison-3.0

2013-08-24 Thread John Burrell
It can be fixed by editing line 1786 in DerivedSources/ANGLE/glslang_tab.cpp change line 1786 from: yychar = yylex (yyval); to: void* somevariablex; yychar = yylex (yyval, somevariablex); I made that change and carried on with make. It got past the error and is still compiling -

Re: [blfs-dev] webkitgtk-2.0.4 and Bison-3.0

2013-08-24 Thread Fernando de Oliveira
Em 24-08-2013 14:03, John Burrell escreveu: It can be fixed by editing line 1786 in DerivedSources/ANGLE/glslang_tab.cpp change line 1786 from: yychar = yylex (yyval); to: void* somevariablex; yychar = yylex (yyval, somevariablex); I made that change and carried on with make. It got

Re: [blfs-dev] webkitgtk-2.0.4 and Bison-3.0

2013-08-24 Thread Bruce Dubbs
Fernando de Oliveira wrote: Em 24-08-2013 14:03, John Burrell escreveu: It can be fixed by editing line 1786 in DerivedSources/ANGLE/glslang_tab.cpp change line 1786 from: yychar = yylex (yyval); to: void* somevariablex; yychar = yylex (yyval, somevariablex); I made that change