summaryrefslogtreecommitdiff
path: root/ext/phar/config.w32
diff options
context:
space:
mode:
authorGreg Beaver <cellog@php.net>2007-12-21 19:02:20 +0000
committerGreg Beaver <cellog@php.net>2007-12-21 19:02:20 +0000
commit245ca069c8fca67d528193734100573479ebf6b4 (patch)
treeb2f5c96356d0fe5b203f56daa936429a4886bdf4 /ext/phar/config.w32
parent306a73677e7859067805936898d82f4634f5b62b (diff)
downloadphp-git-245ca069c8fca67d528193734100573479ebf6b4.tar.gz
same fix we used in linux to make all extension deps optional
Diffstat (limited to 'ext/phar/config.w32')
-rw-r--r--ext/phar/config.w328
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/phar/config.w32 b/ext/phar/config.w32
index d393a1a06c..8046b06d01 100644
--- a/ext/phar/config.w32
+++ b/ext/phar/config.w32
@@ -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);
}