From 3313d14f9d71e5beeb51169688b69f3a34fe4489 Mon Sep 17 00:00:00 2001 From: Nicolas Le Cam Date: Fri, 14 Jun 2013 21:11:27 +0200 Subject: [PATCH] Don't use xmlValidateName() when not available. Fix compilation with minimum and debug. --- debugXML.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debugXML.c b/debugXML.c index 3c137839..8aab7032 100644 --- a/debugXML.c +++ b/debugXML.c @@ -254,10 +254,12 @@ xmlCtxtCheckName(xmlDebugCtxtPtr ctxt, const xmlChar * name) xmlDebugErr(ctxt, XML_CHECK_NO_NAME, "Name is NULL"); return; } +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) if (xmlValidateName(name, 0)) { xmlDebugErr3(ctxt, XML_CHECK_NOT_NCNAME, "Name is not an NCName '%s'", (const char *) name); } +#endif if ((ctxt->dict != NULL) && (!xmlDictOwns(ctxt->dict, name)) && ((ctxt->doc == NULL) ||