Skip to content

Commit a400298

Browse files
authored
Add hash extension to soap dependencies (#15449)
This adds the hash extension to the configure phase as a required dependency.
1 parent 565a31c commit a400298

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

ext/soap/config.m4

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ if test "$PHP_SOAP" != "no"; then
2020
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
2121
PHP_SUBST([SOAP_SHARED_LIBADD])
2222
])
23+
PHP_ADD_EXTENSION_DEP(soap, hash)
2324
PHP_ADD_EXTENSION_DEP(soap, libxml)
2425
PHP_ADD_EXTENSION_DEP(soap, session, true)
2526
fi

ext/soap/config.w32

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ if (PHP_SOAP != "no") {
1010
) {
1111
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");
1212
AC_DEFINE('HAVE_SOAP', 1, "Define to 1 if the PHP extension 'soap' is available.");
13+
ADD_EXTENSION_DEP('soap', 'hash');
1314
ADD_EXTENSION_DEP('soap', 'session', true);
1415

1516
if (!PHP_SOAP_SHARED) {

0 commit comments

Comments
 (0)