parser: Remove remnants of runtime debugging feature

Apparently, this feature was remove long ago.

Fixes #651.
This commit is contained in:
Nick Wellnhofer 2024-01-04 17:50:11 +01:00
parent 8c5848bdd5
commit d7d300ba04
4 changed files with 1 additions and 7 deletions

View File

@ -103,8 +103,6 @@ AC_ARG_WITH(reader,
[ --with-reader xmlReader parsing interface (on)])
AC_ARG_WITH(regexps,
[ --with-regexps regular expressions support (on)])
AC_ARG_WITH(run_debug,
[ --with-run-debug runtime debugging module (off)])
AC_ARG_WITH(sax1,
[ --with-sax1 older SAX1 interface (on)])
AC_ARG_WITH(schemas,
@ -241,7 +239,6 @@ if test "$with_minimum" = "yes"; then
test "$with_reader" = "" && with_reader=no
test "$with_readline" = "" && with_readline=no
test "$with_regexps" = "" && with_regexps=no
test "$with_run_debug" = "" && with_run_debug=no
test "$with_sax1" = "" && with_sax1=no
test "$with_schemas" = "" && with_schemas=no
test "$with_schematron" = "" && with_schematron=no

View File

@ -1427,7 +1427,7 @@ typedef enum {
XML_WITH_MODULES = 27,
XML_WITH_DEBUG = 28,
XML_WITH_DEBUG_MEM = 29,
XML_WITH_DEBUG_RUN = 30,
XML_WITH_DEBUG_RUN = 30, /* unused */
XML_WITH_ZLIB = 31,
XML_WITH_ICU = 32,
XML_WITH_LZMA = 33,

View File

@ -690,8 +690,6 @@ xmlHasFeature(xmlFeature feature)
#else
return(0);
#endif
case XML_WITH_DEBUG_RUN:
return(0);
case XML_WITH_ZLIB:
#ifdef LIBXML_ZLIB_ENABLED
return(1);

View File

@ -2985,7 +2985,6 @@ static void showVersion(const char *name) {
if (xmlHasFeature(XML_WITH_MODULES)) fprintf(stderr, "Modules ");
if (xmlHasFeature(XML_WITH_DEBUG)) fprintf(stderr, "Debug ");
if (xmlHasFeature(XML_WITH_DEBUG_MEM)) fprintf(stderr, "MemDebug ");
if (xmlHasFeature(XML_WITH_DEBUG_RUN)) fprintf(stderr, "RunDebug ");
if (xmlHasFeature(XML_WITH_ZLIB)) fprintf(stderr, "Zlib ");
if (xmlHasFeature(XML_WITH_LZMA)) fprintf(stderr, "Lzma ");
fprintf(stderr, "\n");