(libxml2) some ifdefs removed

This commit is contained in:
twinaphex 2012-11-18 00:23:59 +01:00
parent f338529585
commit 01369d69d1
2 changed files with 0 additions and 26 deletions

View File

@ -139,24 +139,6 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
#define DEBUG_MEMORY_LOCATION
#endif
/**
* LIBXML_DEBUG_RUNTIME:
*
* Whether the runtime debugging is configured in
*/
#if 0
#define LIBXML_DEBUG_RUNTIME
#endif
/**
* LIBXML_EXPR_ENABLED:
*
* Whether the formal expressions interfaces are compiled in
*/
#if 0
#define LIBXML_EXPR_ENABLED
#endif
/**
* LIBXML_LZMA_ENABLED:
*

View File

@ -827,11 +827,7 @@ xmlHasFeature(xmlFeature feature)
case XML_WITH_AUTOMATA:
return(0);
case XML_WITH_EXPR:
#ifdef LIBXML_EXPR_ENABLED
return(1);
#else
return(0);
#endif
case XML_WITH_SCHEMAS:
return(0);
case XML_WITH_SCHEMATRON:
@ -847,11 +843,7 @@ xmlHasFeature(xmlFeature feature)
return(0);
#endif
case XML_WITH_DEBUG_RUN:
#ifdef LIBXML_DEBUG_RUNTIME
return(1);
#else
return(0);
#endif
case XML_WITH_ZLIB:
return(0);
case XML_WITH_LZMA: