Building PHP 5.1.4 on AIX fails in two places with a syntax error:

Zend/zend_language_parser.c:2585
Zend/zend_ini_parser.c:1081

The offending code is the same in both cases, which is not surprising
since they are both bison-generated files:

#if defined (__STDC__) || defined (__cplusplus)
int
yyparse (void)
#else
int
yyparse ()
    ;
#endif

The compilation succeeds after I delete the line containing the
semicolon.

I downloaded a 5.2 snapshot and verified that this line is still
present.

Cheers,
- Mark

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to