Justtechjobs.com Find a programming school near you






Online Campus Both


php-developer-list | 2000101

[PHP-DEV] PHP 4.0 Bug #7211: APXS CFlags not set From: sailor <email protected>
Date: 10/14/00

From: sailor <email protected>
Operating system: All
PHP version: 4.0.3
PHP Bug Type: Apache related
Bug description: APXS CFlags not set

If apache was compiled with different CFLAGS than php (specifically in my case, perl had largefile support, so mod_perl compiled apache with it... and then php didn't realize that), then it could segfault upon attempting to fulfill a request

Though it may have been easier just to recompile perl without largefile support, I decided to get to the source of the problem instead.

Here is a short patch to the config script that should solve the problem (works for me)

diff -u php-4.0.3/sapi/apache/config.m4 php/sapi/apache/config.m4
--- php-4.0.3/sapi/apache/config.m4 Mon Sep 11 09:01:07 2000
+++ php/sapi/apache/config.m4 Sat Oct 14 17:02:24 2000
@@ -55,6 +55,9 @@
         AC_DEFINE(HAVE_AP_CONFIG_H,1,[ ])
         AC_DEFINE(HAVE_AP_COMPAT_H,1,[ ])
         AC_MSG_RESULT(yes)
+ AC_MSG_CHECKING(for APXS CFLAGS)
+ AC_MSG_RESULT($APXS_CFLAGS)
+ CFLAGS="$CFLAGS $APXS_CFLAGS"
 ],[
         AC_MSG_RESULT(no)
 ])

-- 
Edit Bug report at: http://bugs.php.net/?id=7211&edit=1

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>