From: Greg Beaver Date: Tue, 18 Dec 2007 05:32:11 +0000 (+0000) Subject: oops, need to make these things optional, not required X-Git-Tag: RELEASE_2_0_0a1~1143 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d757f6ee5edb697970651aeb5f4e1c0e30146900;p=php oops, need to make these things optional, not required --- diff --git a/ext/phar/config.m4 b/ext/phar/config.m4 index 75c26eae52..5597388efb 100644 --- a/ext/phar/config.m4 +++ b/ext/phar/config.m4 @@ -6,9 +6,9 @@ PHP_ARG_ENABLE(phar, for phar support/phar zlib support, if test "$PHP_PHAR" != "no"; then PHP_NEW_EXTENSION(phar, phar.c phar_object.c phar_path_check.c, $ext_shared) - PHP_ADD_EXTENSION_DEP(phar, zlib, false) - PHP_ADD_EXTENSION_DEP(phar, bz2, false) - PHP_ADD_EXTENSION_DEP(phar, spl, false) - PHP_ADD_EXTENSION_DEP(phar, gnupg, false) + PHP_ADD_EXTENSION_DEP(phar, zlib, true) + PHP_ADD_EXTENSION_DEP(phar, bz2, true) + PHP_ADD_EXTENSION_DEP(phar, spl, true) + PHP_ADD_EXTENSION_DEP(phar, gnupg, true) PHP_ADD_MAKEFILE_FRAGMENT fi