1
0
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:
Peter Kokot
2024-07-22 21:30:15 +02:00
committed by GitHub
parent 21418b5bb5
commit 499ea9067d
2 changed files with 4 additions and 3 deletions

View File

@@ -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])

View File

@@ -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();