]> granicus.if.org Git - php/commitdiff
same fix we used in linux to make all extension deps optional
authorGreg Beaver <cellog@php.net>
Fri, 21 Dec 2007 19:02:20 +0000 (19:02 +0000)
committerGreg Beaver <cellog@php.net>
Fri, 21 Dec 2007 19:02:20 +0000 (19:02 +0000)
ext/phar/config.w32

index d393a1a06c5bd95d6518cf3f9c3d41f1e0a055e1..8046b06d01182a2409539e565c94092cbff502e1 100644 (file)
@@ -5,8 +5,8 @@ ARG_ENABLE("phar", "enable phar support", "no");
 
 if (PHP_PHAR != "no") {
        EXTENSION("phar", "phar.c phar_object.c phar_path_check.c");
-       ADD_EXTENSION_DEP('phar', 'zlib', false);
-       ADD_EXTENSION_DEP('phar', 'bz2', false);
-       ADD_EXTENSION_DEP('phar', 'spl', false);
-       ADD_EXTENSION_DEP('phar', 'gnupg', false);
+       ADD_EXTENSION_DEP('phar', 'zlib', true);
+       ADD_EXTENSION_DEP('phar', 'bz2', true);
+       ADD_EXTENSION_DEP('phar', 'spl', true);
+       ADD_EXTENSION_DEP('phar', 'gnupg', true);
 }