mirror of
https://github.com/php/php-src.git
synced 2026-03-28 02:02:32 +01:00
12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("phar", "enable phar support", "no");
|
|
|
|
if (PHP_PHAR != "no") {
|
|
EXTENSION("phar", "phar.c");
|
|
ADD_EXTENSION_DEP('phar', 'zlib', true);
|
|
ADD_EXTENSION_DEP('phar', 'bz2', true);
|
|
ADD_EXTENSION_DEP('phar', 'spl', false);
|
|
}
|