From: Ilia Alshanetsky Date: Fri, 26 Mar 2004 19:48:53 +0000 (+0000) Subject: MFH: Fixed bug #27664 (--disable-cli doesn't force --without-pear). X-Git-Tag: php-4.3.6RC1~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20c0fb5e9c59d36d66570628476895cce8ef9069;p=php MFH: Fixed bug #27664 (--disable-cli doesn't force --without-pear). --- diff --git a/NEWS b/NEWS index e7d08fb9c5..a2ec413505 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2004, Version 4.3.6 +- Fixed bug #27664 (--disable-cli doesn't force --without-pear). (Ilia) - Fixed bug #27663 (compile failure with cURL 7.11.1). (Ilia) 26 Mar 2004, Version 4.3.5 diff --git a/configure.in b/configure.in index 2808a334fa..301aa91bf8 100644 --- a/configure.in +++ b/configure.in @@ -1044,6 +1044,8 @@ if test "$disable_cli" != "1"; then PHP_CLI_TARGET="\$(SAPI_CLI_PATH)" PHP_INSTALL_CLI_TARGET="install-cli" PHP_ADD_SOURCES(sapi/cli, php_cli.c getopt.c,, cli) +else + with_pear=no fi PHP_SUBST(PHP_CLI_TARGET)