mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Sync required phar dependencies (#15058)
Required extensions hash and spl are added to the configure phase as required. They are also already noted as ZEND_MOD_REQUIRED.
This commit is contained in:
@@ -17,8 +17,8 @@ if test "$PHP_PHAR" != "no"; then
|
||||
AC_MSG_RESULT([no])
|
||||
fi
|
||||
fi
|
||||
PHP_ADD_EXTENSION_DEP(phar, hash, true)
|
||||
PHP_ADD_EXTENSION_DEP(phar, spl, true)
|
||||
PHP_ADD_EXTENSION_DEP(phar, hash)
|
||||
PHP_ADD_EXTENSION_DEP(phar, spl)
|
||||
PHP_ADD_MAKEFILE_FRAGMENT
|
||||
|
||||
PHP_INSTALL_HEADERS([ext/phar], [php_phar.h])
|
||||
|
||||
@@ -34,7 +34,8 @@ if (PHP_PHAR != "no") {
|
||||
STDOUT.WriteLine(' Native OpenSSL support in Phar disabled');
|
||||
}
|
||||
}
|
||||
ADD_EXTENSION_DEP('phar', 'spl', true);
|
||||
ADD_EXTENSION_DEP('phar', 'hash');
|
||||
ADD_EXTENSION_DEP('phar', 'spl');
|
||||
PHP_INSTALL_HEADERS("ext/phar", "php_phar.h");
|
||||
|
||||
ADD_MAKEFILE_FRAGMENT();
|
||||
|
||||
Reference in New Issue
Block a user