mirror of
https://github.com/php/php-src.git
synced 2025-01-25 21:23:45 +08:00
a3fcdf4f08
- Add support for HEAD - Cleanup
13 lines
404 B
Plaintext
13 lines
404 B
Plaintext
dnl $Id$
|
|
dnl config.m4 for extension phar
|
|
|
|
PHP_ARG_ENABLE(phar, for phar support/phar zlib support,
|
|
[ --enable-phar Enable phar support, use --with-zlib-dir if zlib detection fails])
|
|
|
|
if test "$PHP_PHAR" != "no"; then
|
|
PHP_NEW_EXTENSION(phar, phar.c, $ext_shared)
|
|
PHP_ADD_EXTENSION_DEP(phar, zlib, true)
|
|
PHP_ADD_EXTENSION_DEP(phar, bz2, true)
|
|
PHP_ADD_EXTENSION_DEP(phar, spl, false)
|
|
fi
|