diff options
author | SVN Migration <svn@php.net> | 2008-05-12 21:03:49 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2008-05-12 21:03:49 +0000 |
commit | 16b4d8e0e1108564fa042520171d9091af708d83 (patch) | |
tree | ed242b98e845ea9c045ad6e10b9e9a083b569dd5 /ext/phar/config.w32 | |
parent | e35c45791383ac9337adcd37255895f396001557 (diff) | |
download | php-git-16b4d8e0e1108564fa042520171d9091af708d83.tar.gz |
This commit was manufactured by cvs2svn to create branch 'PHP_5_3'.
Diffstat (limited to 'ext/phar/config.w32')
-rw-r--r-- | ext/phar/config.w32 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ext/phar/config.w32 b/ext/phar/config.w32 new file mode 100644 index 0000000000..35127a7b13 --- /dev/null +++ b/ext/phar/config.w32 @@ -0,0 +1,14 @@ +// $Id$ +// vim:ft=javascript + +ARG_ENABLE("phar", "enable phar support", "no"); + +if (PHP_PHAR != "no") { + EXTENSION("phar", "dirstream.c func_interceptors.c phar.c phar_object.c phar_path_check.c stream.c tar.c util.c zip.c"); + 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); +} |