diff options
author | Greg Beaver <cellog@php.net> | 2008-01-17 03:59:07 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2008-01-17 03:59:07 +0000 |
commit | 9a59e606578889b2a763fc75c7d6d29964371a1f (patch) | |
tree | 0bd81fa5b71c009e537a252d29b802974a06d258 /ext/phar/config.w32 | |
parent | a3718dcfa3e10ac58bf2ff0ab278148f936db59d (diff) | |
download | php-git-9a59e606578889b2a763fc75c7d6d29964371a1f.tar.gz |
remove HAVE_ZIP defines just as we removed HAVE_BZ2 defines and for the same reason
update outdated description of phar in config.m4
make zip extension mandatory on windows for compiling purposes
Diffstat (limited to 'ext/phar/config.w32')
-rw-r--r-- | ext/phar/config.w32 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/phar/config.w32 b/ext/phar/config.w32 index 7c25c4ed47..79a4e43e75 100644 --- a/ext/phar/config.w32 +++ b/ext/phar/config.w32 @@ -2,10 +2,10 @@ // vim:ft=javascript ARG_ENABLE("phar", "enable phar support", "no"); -ARG_WITH("phar-zip", "for zip-based phar support", "no"); if (PHP_PHAR != "no") { EXTENSION("phar", "tar.c zip.c stream.c dirstream.c func_interceptors.c phar.c phar_object.c phar_path_check.c"); + ADD_EXTENSION_DEP('phar', 'zip'); if (PHP_ZIP_SHARED) { ADD_FLAG("CFLAGS_PHAR", "/D COMPILE_DL_ZIP "); } @@ -13,7 +13,6 @@ if (PHP_PHAR != "no") { ADD_FLAG("CFLAGS_PHAR", "/D COMPILE_DL_PHAR "); } if (PHP_ZIP != "no") { - ADD_EXTENSION_DEP('phar', 'zip', true); AC_DEFINE('HAVE_PHAR_ZIP', 1); } ADD_EXTENSION_DEP('phar', 'zlib', true); |