diff options
| author | Sascha Schumann <sas@php.net> | 2003-02-11 02:34:52 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2003-02-11 02:34:52 +0000 |
| commit | fa6d2d48c5f65ca3ed831a3413b3099e3d1d5b3c (patch) | |
| tree | a4eb1424b3350126d37fa3f0f93f1e14b16ca5a1 /sapi/apache/config.m4 | |
| parent | 67f18fcf6c5918e9273dbdab165b99bd60b3e736 (diff) | |
| download | php-git-fa6d2d48c5f65ca3ed831a3413b3099e3d1d5b3c.tar.gz | |
move check to proper place
Diffstat (limited to 'sapi/apache/config.m4')
| -rw-r--r-- | sapi/apache/config.m4 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sapi/apache/config.m4 b/sapi/apache/config.m4 index 3ff82b3e24..ca23a1d49e 100644 --- a/sapi/apache/config.m4 +++ b/sapi/apache/config.m4 @@ -218,11 +218,10 @@ AC_CACHE_CHECK([for member fd in BUFF *],ac_cv_php_fd_in_buff,[ AC_TRY_COMPILE([#include <httpd.h>],[conn_rec *c; int fd = c->client->fd;],[ ac_cv_php_fd_in_buff=yes],[ac_cv_php_fd_in_buff=no],[ac_cv_php_fd_in_buff=no]) CPPFLAGS=$save -],[ - if test "$ac_cv_php_fd_in_buff" = "yes"; then - AC_DEFINE(PHP_APACHE_HAVE_CLIENT_FD, 1, [ ]) - fi ]) +if test "$ac_cv_php_fd_in_buff" = "yes"; then + AC_DEFINE(PHP_APACHE_HAVE_CLIENT_FD,1,[ ]) +fi AC_MSG_CHECKING(for mod_charset compatibility option) |
