On Thu, Feb 10, 2000 at 03:30:34PM -0600, Adriel Ickler wrote:
> After upgrading to 4.0-current and attempting a clean install of wine, I
> saw this:
> 
> ./parser.y: In function `yyparse':
> ./parser.y:1624: syntax error before `}'
> 
> in: /usr/ports/emulators/wine/work/wine-991114/tools/wrc/parser.y 
> 
> line 1624: expr    : xpr   { $$ = ($1) }
> was obviously incorrect (typo), fix was:
> 
> expr    : xpr   { $$ = ($1); }
> 
> in case anyone else has this problem and doesnt know c.

Wine thinks it can use byacc, but it needs bison.  The patch attached to
the PR ports/16344 will fix the build or you can just cd to
ports/devel/bison and install it first which is all the patch really
does.

-- Brooks

-- 
Any statement of the form "X is the one, true Y" is FALSE.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to