quick hack to get base to compile and link again.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34963 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2012-03-20 17:45:16 +00:00
parent 548e2ae5da
commit b9c5b1414b

View file

@ -1253,8 +1253,12 @@ execute_xpath(NSXMLNode *xmlNode, NSString *xpath_exp, NSString *nmspaces)
}
case NSXMLEntityDeclarationKind:
// FIXME ... xmlNewEntity doesn't exist in common version of libxml2
/*
node = xmlNewEntity(NULL, (xmlChar *)"", 0, (xmlChar *)"",
(xmlChar *)"", (xmlChar *)"");
*/
node = xmlNewNode(NULL, (xmlChar *)"");
break;
case NSXMLNotationDeclarationKind: