Edit report at https://bugs.php.net/bug.php?id=65460&edit=1
ID: 65460 Updated by: s...@php.net Reported by: stu at coe dot uky dot edu Summary: PHP 5.4.18 fails to compile with Apache 2.4.6 Status: Assigned Type: Bug Package: Compile Failure Operating System: Slackware64 14.0 PHP Version: 5.4.18 Assigned To: stas Block user comment: N Private report: N New Comment: OK, looks like the patch for bug #64503 should be applied to 5.4 too for it to work with bison 2.7. Previous Comments: ------------------------------------------------------------------------ [2013-08-19 13:48:16] stu at coe dot uky dot edu Applying the patch (at https://bugs.php.net/patch-display.php?bug_id=64503&patch=bison_build_2.patch&revision=latest) and doing the other steps: rm Zend/zend_{language,ini}_parser.[ch] ./genfiles fixed the problem. FYI Slackware 14.0 ships with bison (GNU Bison) 2.5.1 Thanks to all! ------------------------------------------------------------------------ [2013-08-19 12:05:32] r...@php.net I think this is the same issue than #64503, caused by the switch from Bison 2.3 to 2.7, used to generate the parser. Notice : the fix for this issue have only been applied in 5.5 tree. ------------------------------------------------------------------------ [2013-08-19 07:37:04] m...@php.net Sorry for not being explicit enough! I can reproduce with $ ./configure --enable-maintainer-zts --disable-all --prefix=$(pwd)/usr so, enabling ZTS should cause the issue. ------------------------------------------------------------------------ [2013-08-19 07:10:26] s...@php.net Mike, so which options should I use to reproduce it? Because I used with-apxs2 and it worked fine. Should apache be built with some special options? IIRC, it usually does not build ZTS version, so what is the config for you that doesn't work? ------------------------------------------------------------------------ [2013-08-19 07:03:45] m...@php.net I also doubt that it's about Apache, but rather about ZTS. Looking at the tarball files I see: in zend_global_macros.h: /* Compiler */ #ifdef ZTS # define CG(v) TSRMG(compiler_globals_id, zend_compiler_globals *, v) int zendparse(void *compiler_globals); #else # define CG(v) (compiler_globals.v) extern ZEND_API struct _zend_compiler_globals compiler_globals; int zendparse(void); #endif Note the #ifdef ZTS zendparse declaration ...and in zend_language_parser.h: #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int zendparse (void *YYPARSE_PARAM); #else int zendparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int zendparse (void); #else int zendparse (); #endif #endif /* ! YYPARSE_PARAM */ ...where YYPARSE_PARAM is defined in the source (.c) file. ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at https://bugs.php.net/bug.php?id=65460 -- Edit this bug report at https://bugs.php.net/bug.php?id=65460&edit=1