Skip to content

Commit 3b450ec

Browse files
committed
Add dependencies for these extensions
1 parent 113165b commit 3b450ec

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

ext/dom/config.w32

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ if (PHP_DOM == "yes" && PHP_LIBXML == "yes") {
1616
if (!PHP_DOM_SHARED) {
1717
ADD_FLAG("CFLAGS_DOM", "/D LIBXML_STATIC ");
1818
}
19+
ADD_EXTENSION_DEP('dom', 'libxml');
1920
}
2021

2122

ext/exif/config.w32

+1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ ARG_WITH("exif", "exif", "no");
66
if (PHP_EXIF == "yes") {
77
EXTENSION("exif", "exif.c");
88
AC_DEFINE('HAVE_EXIF', 1, 'Have exif');
9+
ADD_EXTENSION_DEP('exif', 'mbstring');
910
}

ext/simplexml/config.w32

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ if (PHP_SIMPLEXML == "yes" && PHP_LIBXML == "yes") {
99
if (!PHP_SIMPLEXML_SHARED) {
1010
ADD_FLAG("CFLAGS_SIMPLEXML", "/D LIBXML_STATIC");
1111
}
12+
ADD_EXTENSION_DEP('simplexml', 'libxml');
1213
}
1314

1415

ext/wddx/config.w32

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ ARG_WITH("wddx", "WDDX support", "yes");
66
if (PHP_WDDX == "yes" && PHP_LIBXML == "yes") {
77
EXTENSION("wddx", "wddx.c");
88
AC_DEFINE("HAVE_WDDX", 1, "WDDX support");
9+
ADD_EXTENSION_DEP('wddx', 'libxml');
910
}
1011

1112

ext/xml/config.w32

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ if (PHP_XML == "yes" && PHP_LIBXML == "yes") {
99
if (!PHP_XML_SHARED) {
1010
ADD_FLAG("CFLAGS_XML", "/D LIBXML_STATIC ");
1111
}
12+
ADD_EXTENSION_DEP('xml', 'libxml');
1213
}
1314

1415

ext/xmlrpc/config.w32

+1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ if (PHP_XMLRPC != "no") {
99
ADD_SOURCES(configure_module_dirname + "/libxmlrpc", "base64.c simplestring.c xml_to_dandarpc.c \
1010
xmlrpc_introspection.c encodings.c system_methods.c xml_to_xmlrpc.c \
1111
queue.c xml_element.c xmlrpc.c xml_to_soap.c", "xmlrpc");
12+
ADD_EXTENSION_DEP('xmlrpc', 'libxml');
1213
}
1314

ext/xsl/config.w32

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ if (PHP_XSL != "no") {
2525
ADD_FLAG("LDFLAGS_XSL", "/nodefaultlib:msvcrt");
2626
}
2727
}
28+
ADD_EXTENSION_DEP('xsl', 'libxml');
2829
} else {
2930
WARNING("xsl not enabled; libraries and headers not found");
3031
}

0 commit comments

Comments
 (0)