summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2010-02-25 17:08:17 +0000
committerKalle Sommer Nielsen <kalle@php.net>2010-02-25 17:08:17 +0000
commite9692ffd2a96d756fbe3af081c6e0cd272eef8de (patch)
tree429b7224429734d3ac88670d6dccd46b2db68d98
parentecc1eaa7398b5756f28ddf67d21ed05d9b1273f7 (diff)
downloadphp-git-e9692ffd2a96d756fbe3af081c6e0cd272eef8de.tar.gz
Fix assignment when SimpleXML is disabled on Windows
-rw-r--r--ext/simplexml/config.w322
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/simplexml/config.w32 b/ext/simplexml/config.w32
index 979f52281a..94546302e3 100644
--- a/ext/simplexml/config.w32
+++ b/ext/simplexml/config.w32
@@ -15,7 +15,7 @@ if (PHP_SIMPLEXML == "yes") {
}
ADD_FLAG("CFLAGS_SIMPLEXML", "/D PHP_SIMPLEXML_EXPORTS ");
} else {
- PHP_SIMPLEXML == "no";
+ PHP_SIMPLEXML = "no";
WARNING("simplexml not enabled; libraries and headers not found");
}
}