From a8ac58e80849ed192e357a23e1e70c760a73e862 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Fri, 1 Feb 2019 12:09:29 +0100 Subject: [PATCH] Disable PEAR by default --- configure.ac | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 2da7776e53c36..294c14687df63 100644 --- a/configure.ac +++ b/configure.ac @@ -1136,8 +1136,7 @@ if test "$PHP_CLI" = "no"; then fi PHP_ARG_WITH(pear, [whether to install PEAR], -[ --with-pear=DIR Install PEAR in DIR @<:@PREFIX/lib/php@:>@ - --without-pear Do not install PEAR], DEFAULT, yes) +[ --with-pear=DIR Install PEAR in DIR @<:@PREFIX/lib/php@:>@], no, yes) if test "$PHP_PEAR" != "no"; then @@ -1156,7 +1155,7 @@ if test "$PHP_PEAR" != "no"; then install_pear="install-pear" PEAR_INSTALLDIR=$PHP_PEAR - if test "$PHP_PEAR" = "DEFAULT" || test "$PHP_PEAR" = "yes"; then + if test "$PHP_PEAR" = "yes"; then case $PHP_LAYOUT in GNU) PEAR_INSTALLDIR=$datadir/pear;; *) PEAR_INSTALLDIR=$libdir/php;;