From: Pierre Joye Date: Wed, 22 Apr 2009 19:06:47 +0000 (+0000) Subject: - make it loud when libxml is missing or the dep is not present X-Git-Tag: php-5.3.0RC2~130 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30505d13390845e91c05e922daee871eb2490054;p=php - make it loud when libxml is missing or the dep is not present --- diff --git a/ext/soap/config.w32 b/ext/soap/config.w32 index 5e23955122..7aa73b5838 100644 --- a/ext/soap/config.w32 +++ b/ext/soap/config.w32 @@ -3,8 +3,8 @@ ARG_ENABLE("soap", "SOAP support", "no"); -if (PHP_SOAP != "no" && PHP_LIBXML == "yes") { - if (ADD_EXTENSION_DEP('soap', 'libxml')) { +if (PHP_SOAP != "no") { + if (PHP_LIBXML == "yes" && ADD_EXTENSION_DEP('soap', 'libxml')) { EXTENSION('soap', 'soap.c php_encoding.c php_http.c php_packet_soap.c php_schema.c php_sdl.c php_xml.c'); AC_DEFINE('HAVE_PHP_SOAP', 1, "SOAP support"); @@ -16,4 +16,3 @@ if (PHP_SOAP != "no" && PHP_LIBXML == "yes") { PHP_SOAP = "no" } } -