mirror of
https://github.com/php/php-src.git
synced 2025-01-08 20:17:28 +08:00
033cafacbd
The hash extension is always available since PHP-7.4. The symbol HAVE_HASH_EXT is kept for BC reasons and removed in PHP-8.0. This patch also removes the PHAR_HASH_OK since it is no longer relevant.
28 lines
851 B
Plaintext
28 lines
851 B
Plaintext
PHP_ARG_ENABLE([phar],
|
|
[for phar archive support],
|
|
[AS_HELP_STRING([--disable-phar],
|
|
[Disable phar support])],
|
|
[yes])
|
|
|
|
if test "$PHP_PHAR" != "no"; then
|
|
PHP_NEW_EXTENSION(phar, util.c tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
|
|
AC_MSG_CHECKING([for phar openssl support])
|
|
if test "$PHP_OPENSSL_SHARED" = "yes"; then
|
|
AC_MSG_RESULT([no (shared openssl)])
|
|
else
|
|
if test "$PHP_OPENSSL" = "yes"; then
|
|
AC_MSG_RESULT([yes])
|
|
AC_DEFINE(PHAR_HAVE_OPENSSL,1,[ ])
|
|
else
|
|
AC_MSG_RESULT([no])
|
|
fi
|
|
fi
|
|
PHP_ADD_EXTENSION_DEP(phar, hash, true)
|
|
PHP_ADD_EXTENSION_DEP(phar, spl, true)
|
|
PHP_ADD_MAKEFILE_FRAGMENT
|
|
|
|
PHP_INSTALL_HEADERS([ext/phar], [php_phar.h])
|
|
|
|
PHP_OUTPUT(ext/phar/phar.1 ext/phar/phar.phar.1)
|
|
fi
|