From: Wez Furlong Date: Fri, 6 Feb 2004 09:18:51 +0000 (+0000) Subject: prefer != "no" over = "yes". (it doesn't really matter for ext/soap, but X-Git-Tag: php-5.0.0b4RC1~104 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cf588a0a9f4f7757e7e8057c1953d78384aefd2;p=php prefer != "no" over = "yes". (it doesn't really matter for ext/soap, but it's still the best practice). --- diff --git a/ext/soap/config.w32 b/ext/soap/config.w32 index c156921cae..cd93531867 100644 --- a/ext/soap/config.w32 +++ b/ext/soap/config.w32 @@ -3,7 +3,7 @@ ARG_WITH("soap", "SOAP support", "no"); -if (PHP_SOAP == "yes" && PHP_LIBXML == "yes") { +if (PHP_SOAP != "no" && PHP_LIBXML == "yes") { 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");