summaryrefslogtreecommitdiff
path: root/ext/soap/config.w32
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-02-06 09:18:51 +0000
committerWez Furlong <wez@php.net>2004-02-06 09:18:51 +0000
commit2cf588a0a9f4f7757e7e8057c1953d78384aefd2 (patch)
treeb68a1fef5b74d90efa46855d0ec7e8ccf553831c /ext/soap/config.w32
parentc22d7cf8834a6a22eadc321bf9427f79a65c1c30 (diff)
downloadphp-git-2cf588a0a9f4f7757e7e8057c1953d78384aefd2.tar.gz
prefer != "no" over = "yes". (it doesn't really matter for ext/soap, but
it's still the best practice).
Diffstat (limited to 'ext/soap/config.w32')
-rw-r--r--ext/soap/config.w322
1 files changed, 1 insertions, 1 deletions
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");