Browse Source

move check to proper place

PHP-5
Sascha Schumann 24 years ago
parent
commit
fa6d2d48c5
  1. 7
      sapi/apache/config.m4

7
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)

Loading…
Cancel
Save