|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-07-13 11:12 UTC] sas@php.net
[2002-02-19 20:39 UTC] a dot whyte at cqu dot edu dot au
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 01 00:00:01 2026 UTC |
I've tryed to compile php for apache 2.0.16, heres the error I got : sapi_apache2.c: In function `php_input_filter': sapi_apache2.c:248: too many arguments to function `ap_get_brigade' sapi_apache2.c: In function `php_output_filter': sapi_apache2.c:337: too many arguments to function `ap_save_brigade' sapi_apache2.c: In function `php_register_hook': sapi_apache2.c:443: warning: passing arg 2 of `ap_register_input_filter' from incompatible pointer type I took a look at this file and at util_filter.h from apache's include dir and found out that only three args are necessary to ap_get_brigade. I've looked a bit more at the code and tryed this modification on sapi_apache2.c : if ((rv = ap_get_brigade(f->next, bb, mode)) != APR_SUCCESS) { aparently it now works (I managed to display php pages after that...) It's now up to the php developpers hands and brains to see if my modification is interresting or not.