mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
(libxml2) some ifdefs removed
This commit is contained in:
parent
f338529585
commit
01369d69d1
@ -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:
|
||||
*
|
||||
|
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user