php-src/ext/phar/config.w32
Greg Beaver 4aa4f1fabb 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
2008-05-17 20:07:22 +00:00

13 lines
348 B
JavaScript

// $Id$
// vim:ft=javascript
ARG_ENABLE("phar", "disable phar support", "yes");
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', 'spl', true);
}