|
version 1.1, 2012/02/21 23:48:02
|
version 1.1.1.3, 2013/10/14 08:02:34
|
|
Line 1
|
Line 1
|
| dnl $Id$ -*- autoconf -*- |
dnl $Id$ -*- autoconf -*- |
| |
|
| divert(6006003)dnl |
|
| |
|
| dnl |
dnl |
| dnl Check if flush should be called explicitly after buffered io |
dnl Check if flush should be called explicitly after buffered io |
| dnl |
dnl |
|
Line 342 dnl
|
Line 340 dnl
|
| AC_CHECK_FUNCS(getcwd getwd asinh acosh atanh log1p hypot glob strfmon nice fpclass isinf isnan mempcpy strpncpy) |
AC_CHECK_FUNCS(getcwd getwd asinh acosh atanh log1p hypot glob strfmon nice fpclass isinf isnan mempcpy strpncpy) |
| AC_FUNC_FNMATCH |
AC_FUNC_FNMATCH |
| |
|
| divert(6006005)dnl |
|
| |
|
| dnl |
dnl |
| dnl Check if there is a support means of creating a new process |
dnl Check if there is a support means of creating a new process |
| dnl and defining which handles it receives |
dnl and defining which handles it receives |
|
Line 362 else
|
Line 358 else
|
| AC_MSG_RESULT(no) |
AC_MSG_RESULT(no) |
| fi |
fi |
| |
|
| if test "$PHP_SAPI" = "cgi" || test "$PHP_SAPI" = "cli" || test "$PHP_SAPI" = "embed"; then | PHP_ENABLE_CHROOT_FUNC=no |
| | case "$PHP_SAPI" in |
| | embed) |
| | PHP_ENABLE_CHROOT_FUNC=yes |
| | ;; |
| | |
| | none) |
| | for PROG in $PHP_BINARIES; do |
| | case "$PROG" in |
| | cgi|cli) |
| | PHP_ENABLE_CHROOT_FUNC=yes |
| | ;; |
| | |
| | *) |
| | PHP_ENABLE_CHROOT_FUNC=no |
| | break |
| | ;; |
| | esac |
| | done |
| | ;; |
| | esac |
| | |
| | if test "$PHP_ENABLE_CHROOT_FUNC" = "yes"; then |
| AC_DEFINE(ENABLE_CHROOT_FUNC, 1, [Whether to enable chroot() function]) |
AC_DEFINE(ENABLE_CHROOT_FUNC, 1, [Whether to enable chroot() function]) |
| fi |
fi |
| |
|