[EMAIL PROTECTED] wrote: > > This is most likely when you are trying to serve the blob. I am > > currently not seeing a problem like this here. But I get the 'no > > symbols' on libphp4.so too now. How to verify that this symbol is > > supplied by php4? Anyone? > > Mine shows no symbols too, but does not show the problem. I'm running > php-4.0.4pl1-6mdk, and my wild gues is that with php-4.0.5 they changed > the symbol to sapi_add_header_ex Yep, that's it. I wish they could keep the &*^%@#)@+# build environment stable for more than a ^&%@#)(* week. Jeez. How the heck are we going to detect this? We can't link a test program to php4.so like we do with regular libraries, since all the apache symbols will be missing. Try the attached patch. Hope that this header file existed before they made this change. Emile
RCS file: /usr/local/cvs/midgard/php4/attachment.c,v retrieving revision 1.5 diff -u -r1.5 attachment.c --- attachment.c 2001/06/19 11:53:31 1.5 +++ attachment.c 2001/06/20 20:27:22 @@ -21,6 +21,7 @@ #include "php.h" #include "php_ini.h" #include "php_globals.h" +#include <main/SAPI.h> #include "ext/standard/file.h" #include "mgd_internal.h" #include "php_midgard.h"
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
