]> granicus.if.org Git - php/commitdiff
oops, need to make these things optional, not required
authorGreg Beaver <cellog@php.net>
Tue, 18 Dec 2007 05:32:11 +0000 (05:32 +0000)
committerGreg Beaver <cellog@php.net>
Tue, 18 Dec 2007 05:32:11 +0000 (05:32 +0000)
ext/phar/config.m4

index 75c26eae52c33c9f00891fcba29733541e98c036..5597388efb331f9c52db775320b9fec373b42d51 100644 (file)
@@ -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