mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
11 lines
362 B
Text
11 lines
362 B
Text
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)
|
|
fi
|