Add missing DOM dependency in config.m4 for ext/xsl

Closes GH-13715.
This commit is contained in:
Niels Dossche 2024-03-14 21:16:23 +01:00
parent 23eb6a00e2
commit afdabb1247

View File

@ -29,4 +29,5 @@ if test "$PHP_XSL" != "no"; then
PHP_NEW_EXTENSION(xsl, php_xsl.c xsltprocessor.c, $ext_shared)
PHP_SUBST(XSL_SHARED_LIBADD)
PHP_ADD_EXTENSION_DEP(xsl, libxml)
PHP_ADD_EXTENSION_DEP(xsl, dom)
fi