ID: 32673
Updated by: [EMAIL PROTECTED]
Reported By: dexter at debian dot org
-Status: Open
+Status: Closed
Bug Type: Compile Failure
Operating System: Debian
PHP Version: 5CVS-2005-04-11 (dev)
New Comment:
Fixed in CVS.
Previous Comments:
------------------------------------------------------------------------
[2005-04-11 16:51:12] dexter at debian dot org
Description:
------------
There is critical bug after fixing #32587.
In file included
from
/home/dexter/src/alioth/pear-package/local/php5/debian/tmp/php-5.0.4/sapi/apache2filter/sapi_apache2.c:1:
/home/dexter/src/alioth/pear-package/local/php5/debian/tmp/php-5.0.4/sapi/apache2filter/mod_php5_filter.c:
In function `php_add_filter':
/home/dexter/src/alioth/pear-package/local/php5/debian/tmp/php-5.0.4/sapi/apache2filter/mod_php5_filter.c:632:
error: parse error before numeric constant
make: *** [sapi/apache2filter/sapi_apache2.lo] Błąd 1
The patch:
Index: sapi/apache2filter/sapi_apache2.c
===================================================================
RCS
file: /repository/php-src/sapi/apache2filter/sapi_apache2.c,v
retrieving revision 1.125.2.2
diff -u -r1.125.2.2 sapi_apache2.c
--- sapi/apache2filter/sapi_apache2.c 8 Apr 2005
20:34:03 -0000 1.125.2.2
+++ sapi/apache2filter/sapi_apache2.c 11 Apr 2005
14:49:10 -0000
@@ -628,7 +628,7 @@
/* for those who still have Set*Filter PHP
configured */
while (f) {
if (strcmp(f->frec->name, "PHP") == 0) {
- ap_log_error(APLOG_MARK,
APLOG_WARNING
+ ap_log_error(APLOG_MARK,
APLOG_WARNING,
0, r->server,
"\"Set%sFilter PHP\"
already configured for %s",
output ? "Output" :
"Input", r->uri);
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=32673&edit=1