diff options
author | Wez Furlong <wez@php.net> | 2003-12-22 13:16:43 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-12-22 13:16:43 +0000 |
commit | 3b450ec431f4b9e1a5b9a61f3fa5ff0f51955adc (patch) | |
tree | 2c0c6f885b839479f6fe561973e816bee63d17c1 /ext | |
parent | 113165bd955843ffff6aa480610c2e3f5eb53372 (diff) | |
download | php-git-3b450ec431f4b9e1a5b9a61f3fa5ff0f51955adc.tar.gz |
Add dependencies for these extensions
Diffstat (limited to 'ext')
-rw-r--r-- | ext/dom/config.w32 | 1 | ||||
-rw-r--r-- | ext/exif/config.w32 | 1 | ||||
-rw-r--r-- | ext/simplexml/config.w32 | 1 | ||||
-rw-r--r-- | ext/wddx/config.w32 | 1 | ||||
-rw-r--r-- | ext/xml/config.w32 | 1 | ||||
-rw-r--r-- | ext/xmlrpc/config.w32 | 1 | ||||
-rw-r--r-- | ext/xsl/config.w32 | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/ext/dom/config.w32 b/ext/dom/config.w32 index 5dfb81ced1..382587ff6e 100644 --- a/ext/dom/config.w32 +++ b/ext/dom/config.w32 @@ -16,6 +16,7 @@ if (PHP_DOM == "yes" && PHP_LIBXML == "yes") { if (!PHP_DOM_SHARED) { ADD_FLAG("CFLAGS_DOM", "/D LIBXML_STATIC "); } + ADD_EXTENSION_DEP('dom', 'libxml'); } diff --git a/ext/exif/config.w32 b/ext/exif/config.w32 index f94c05a874..930bbad424 100644 --- a/ext/exif/config.w32 +++ b/ext/exif/config.w32 @@ -6,4 +6,5 @@ ARG_WITH("exif", "exif", "no"); if (PHP_EXIF == "yes") { EXTENSION("exif", "exif.c"); AC_DEFINE('HAVE_EXIF', 1, 'Have exif'); + ADD_EXTENSION_DEP('exif', 'mbstring'); } diff --git a/ext/simplexml/config.w32 b/ext/simplexml/config.w32 index da4a0114cf..f6859d5b2c 100644 --- a/ext/simplexml/config.w32 +++ b/ext/simplexml/config.w32 @@ -9,6 +9,7 @@ if (PHP_SIMPLEXML == "yes" && PHP_LIBXML == "yes") { if (!PHP_SIMPLEXML_SHARED) { ADD_FLAG("CFLAGS_SIMPLEXML", "/D LIBXML_STATIC"); } + ADD_EXTENSION_DEP('simplexml', 'libxml'); } diff --git a/ext/wddx/config.w32 b/ext/wddx/config.w32 index 2a701965f0..d88523ca36 100644 --- a/ext/wddx/config.w32 +++ b/ext/wddx/config.w32 @@ -6,6 +6,7 @@ ARG_WITH("wddx", "WDDX support", "yes"); if (PHP_WDDX == "yes" && PHP_LIBXML == "yes") { EXTENSION("wddx", "wddx.c"); AC_DEFINE("HAVE_WDDX", 1, "WDDX support"); + ADD_EXTENSION_DEP('wddx', 'libxml'); } diff --git a/ext/xml/config.w32 b/ext/xml/config.w32 index 61a489e543..08d25ffe57 100644 --- a/ext/xml/config.w32 +++ b/ext/xml/config.w32 @@ -9,6 +9,7 @@ if (PHP_XML == "yes" && PHP_LIBXML == "yes") { if (!PHP_XML_SHARED) { ADD_FLAG("CFLAGS_XML", "/D LIBXML_STATIC "); } + ADD_EXTENSION_DEP('xml', 'libxml'); } diff --git a/ext/xmlrpc/config.w32 b/ext/xmlrpc/config.w32 index 06b3d3fd2c..8c399cd147 100644 --- a/ext/xmlrpc/config.w32 +++ b/ext/xmlrpc/config.w32 @@ -9,5 +9,6 @@ if (PHP_XMLRPC != "no") { ADD_SOURCES(configure_module_dirname + "/libxmlrpc", "base64.c simplestring.c xml_to_dandarpc.c \ xmlrpc_introspection.c encodings.c system_methods.c xml_to_xmlrpc.c \ queue.c xml_element.c xmlrpc.c xml_to_soap.c", "xmlrpc"); + ADD_EXTENSION_DEP('xmlrpc', 'libxml'); } diff --git a/ext/xsl/config.w32 b/ext/xsl/config.w32 index dc16abdbb9..2a92a7b037 100644 --- a/ext/xsl/config.w32 +++ b/ext/xsl/config.w32 @@ -25,6 +25,7 @@ if (PHP_XSL != "no") { ADD_FLAG("LDFLAGS_XSL", "/nodefaultlib:msvcrt"); } } + ADD_EXTENSION_DEP('xsl', 'libxml'); } else { WARNING("xsl not enabled; libraries and headers not found"); } |