mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
- MFB: be sure we define the deps so the right exts are built before (dom symbol error when dom and xsl are shared)
This commit is contained in:
parent
ed14f3e744
commit
ee9948ecd7
1 changed files with 3 additions and 1 deletions
|
@ -4,7 +4,9 @@
|
|||
ARG_WITH("xsl", "xsl support", "no");
|
||||
|
||||
if (PHP_XSL != "no") {
|
||||
if (PHP_DOM == "yes" && PHP_LIBXML == "yes") {
|
||||
if (PHP_DOM == "yes" && PHP_LIBXML == "yes"
|
||||
&& ADD_EXTENSION_DEP('xsl', 'libxml')
|
||||
&& ADD_EXTENSION_DEP('xsl', 'dom')) {
|
||||
var ext_xsl_lib_found = false;
|
||||
var ext_exslt_lib_found = false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue