mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fixed bug #65226 chroot() does not get enabled
This commit is contained in:
parent
96f77f845a
commit
2acc386270
1
NEWS
1
NEWS
@ -13,6 +13,7 @@ PHP NEWS
|
||||
. Fixed bug #62475 (variant_* functions causes crash when null given as an
|
||||
argument). (Felipe)
|
||||
. Fixed bug #60732 (php_error_docref links to invalid pages). (Jakub Vrana)
|
||||
. Fixed bug #65226 (chroot() does not get enabled). (Anatol)
|
||||
|
||||
- CGI:
|
||||
. Fixed Bug #65143 (Missing php-cgi man page). (Remi)
|
||||
|
@ -358,7 +358,29 @@ else
|
||||
AC_MSG_RESULT(no)
|
||||
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])
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user