summaryrefslogtreecommitdiff
path: root/ext/phar/config.w32
diff options
context:
space:
mode:
authorGreg Beaver <cellog@php.net>2007-11-24 04:07:07 +0000
committerGreg Beaver <cellog@php.net>2007-11-24 04:07:07 +0000
commit0034b47c835829cccce6a98fb925f540990f3a25 (patch)
tree94966db24e756cf038383849d06305834c55756f /ext/phar/config.w32
parenta72251be6e2552d5e74d49a8705dcc1fc31304ab (diff)
downloadphp-git-0034b47c835829cccce6a98fb925f540990f3a25.tar.gz
experimental support for optional bz2 extension - should make windows users a whole lot happier (forgot w32)
Diffstat (limited to 'ext/phar/config.w32')
-rw-r--r--ext/phar/config.w322
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/config.w32 b/ext/phar/config.w32
index d2392aa483..8def276a5b 100644
--- a/ext/phar/config.w32
+++ b/ext/phar/config.w32
@@ -6,6 +6,6 @@ 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', true);
- ADD_EXTENSION_DEP('phar', 'bz2', true);
+ ADD_EXTENSION_DEP('phar', 'bz2', false);
ADD_EXTENSION_DEP('phar', 'spl', false);
}