Hi,
i am getting a compile error on current cvs. Does anyone else seeing this problem e.g. on git ?
My system is SuSE Linux 9.0
Bye Stefan
bison -d -t ../../../wine/tools/widl/parser.y -o parser.tab.c ../../../wine/tools/widl/parser.y:283.11: parse error, unexpected ":", expecting ";" or "|" ../../../wine/tools/widl/parser.y:283.35-38: $$ von »importlib« hat keinen deklarierten Typ ../../../wine/tools/widl/parser.y:283.35-43: $2 von »importlib« hat keinen deklarierten Typ make[2]: *** [parser.tab.c] Fehler 1 make[2]: Leaving directory `/usr/src/wine/wine-build/tools/widl' make[1]: *** [widl] Fehler 2 make[1]: Leaving directory `/usr/src/wine/wine-build/tools' make: *** [tools] Fehler 2 sle@sle3:/usr/src/wine/wine-build> bison --version bison (GNU Bison) 1.75 Geschrieben von Robert Corbett und Richard Stallman.
Copyright © 2002 Free Software Foundation, Inc. Dies ist freie Software; die Kopierbedingungen stehen in den Quellen. Es gibt keine Garantie; auch nicht für VERKAUFBARKEIT oder FÜR SPEZIELLE ZWECKE.
Stefan Leichter wrote:
Hi,
i am getting a compile error on current cvs. Does anyone else seeing this problem e.g. on git ?
Does the attached patch help?
Jacek
diff --git a/tools/widl/parser.y b/tools/widl/parser.y index 9f288bf..4f3ed57 100644 --- a/tools/widl/parser.y +++ b/tools/widl/parser.y @@ -279,6 +279,7 @@ import: import_start imp_statements aE ;
importlib: tIMPORTLIB '(' aSTRING ')' { if(!parse_only) add_importlib($3); } + ;
libraryhdr: tLIBRARY aIDENTIFIER { $$ = $2; } ;