summaryrefslogtreecommitdiff
path: root/xinclude.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2004-02-09 12:39:02 +0000
committerDaniel Veillard <veillard@src.gnome.org>2004-02-09 12:39:02 +0000
commit5bb9ccd56a812b65e94e71477389be7826203649 (patch)
tree4468e71d77ecf04987688ac265b52b16be3800fb /xinclude.c
parent95af594b0bd28ad8847de96ec00ff9244bd94da7 (diff)
downloadlibxml2-5bb9ccd56a812b65e94e71477389be7826203649.tar.gz
remove the warning on the 2001 namespace remove some warnings when
* xinclude.c: remove the warning on the 2001 namespace * parser.c parserInternals.c xpath.c: remove some warnings when compiling with MSVC6 * nanohttp.c: applied a patch when using _WINSOCKAPI_ Daniel
Diffstat (limited to 'xinclude.c')
-rw-r--r--xinclude.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/xinclude.c b/xinclude.c
index a58a7791..4cd762f3 100644
--- a/xinclude.c
+++ b/xinclude.c
@@ -2076,9 +2076,11 @@ xmlXIncludeTestNode(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node) {
(xmlStrEqual(node->ns->href, XINCLUDE_OLD_NS))) {
if (xmlStrEqual(node->ns->href, XINCLUDE_OLD_NS)) {
if (ctxt->legacy == 0) {
+#if 0 /* wait for the XML Core Working Group to get something stable ! */
xmlXIncludeWarn(ctxt, node, XML_XINCLUDE_DEPRECATED_NS,
"Deprecated XInclude namespace found, use %s",
XINCLUDE_NS);
+#endif
ctxt->legacy = 1;
}
}