experimental support for optional bz2 extension - should make windows users a whole lot happier (forgot w32)

This commit is contained in:
Greg Beaver 2007-11-24 04:07:07 +00:00
parent a72251be6e
commit 0034b47c83

View File

@ -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);
}