diff options
author | Greg Beaver <cellog@php.net> | 2008-05-17 20:07:38 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2008-05-17 20:07:38 +0000 |
commit | 11fb7561f057aa3fdb11c13f76356f83ed67f17f (patch) | |
tree | 6b5ca4796ab201e85d5149fe4eb6f8775215ea2e /ext/phar/config.w32 | |
parent | 1e4b63372110fe56bd012d07bc53ab2e4bc5311b (diff) | |
download | php-git-11fb7561f057aa3fdb11c13f76356f83ed67f17f.tar.gz |
enable by default statically instead of shared
this is done by removing zlib/bz2 explicit dependencies because they are unnecessary
we only ever use the stream filter, and the check for existence has
been moved to runtime where it is after startup
Diffstat (limited to 'ext/phar/config.w32')
-rw-r--r-- | ext/phar/config.w32 | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/phar/config.w32 b/ext/phar/config.w32 index 35127a7b13..cbc68ca2e5 100644 --- a/ext/phar/config.w32 +++ b/ext/phar/config.w32 @@ -8,7 +8,5 @@ if (PHP_PHAR != "no") { if (PHP_PHAR_SHARED) { ADD_FLAG("CFLAGS_PHAR", "/D COMPILE_DL_PHAR "); } - ADD_EXTENSION_DEP('phar', 'bz2', true); ADD_EXTENSION_DEP('phar', 'spl', true); - ADD_EXTENSION_DEP('phar', 'zlib', true); } |