diff options
author | Greg Beaver <cellog@php.net> | 2007-12-21 19:02:20 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2007-12-21 19:02:20 +0000 |
commit | 245ca069c8fca67d528193734100573479ebf6b4 (patch) | |
tree | b2f5c96356d0fe5b203f56daa936429a4886bdf4 /ext | |
parent | 306a73677e7859067805936898d82f4634f5b62b (diff) | |
download | php-git-245ca069c8fca67d528193734100573479ebf6b4.tar.gz |
same fix we used in linux to make all extension deps optional
Diffstat (limited to 'ext')
-rw-r--r-- | ext/phar/config.w32 | 8 |
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); } |