1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Add hash extension to soap dependencies (#15449)

This adds the hash extension to the configure phase as a required
dependency.
This commit is contained in:
Peter Kokot
2024-08-17 00:20:20 +02:00
committed by GitHub
parent 565a31c7c5
commit a400298d96
2 changed files with 2 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ if test "$PHP_SOAP" != "no"; then
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
PHP_SUBST([SOAP_SHARED_LIBADD])
])
PHP_ADD_EXTENSION_DEP(soap, hash)
PHP_ADD_EXTENSION_DEP(soap, libxml)
PHP_ADD_EXTENSION_DEP(soap, session, true)
fi

View File

@@ -10,6 +10,7 @@ if (PHP_SOAP != "no") {
) {
EXTENSION('soap', 'soap.c php_encoding.c php_http.c php_packet_soap.c php_schema.c php_sdl.c php_xml.c', null, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
AC_DEFINE('HAVE_SOAP', 1, "Define to 1 if the PHP extension 'soap' is available.");
ADD_EXTENSION_DEP('soap', 'hash');
ADD_EXTENSION_DEP('soap', 'session', true);
if (!PHP_SOAP_SHARED) {