build: Clean up configuration options

Remove run-debug from meson. Fix documentation.
This commit is contained in:
Nick Wellnhofer 2024-05-21 20:56:55 +02:00
parent 11ce63f02b
commit f524993e70
4 changed files with 2 additions and 13 deletions

View File

@ -49,7 +49,7 @@ The following options disable or enable code modules and relevant symbols:
--with-history history support for shell (off) --with-history history support for shell (off)
--with-readline[=DIR] use readline in DIR (for shell history) --with-readline[=DIR] use readline in DIR (for shell history)
--with-html HTML parser (on) --with-html HTML parser (on)
--with-http HTTP support (on) --with-http HTTP support (off)
--with-iconv[=DIR] iconv support (on) --with-iconv[=DIR] iconv support (on)
--with-icu ICU support (off) --with-icu ICU support (off)
--with-iso8859x ISO-8859-X support if no iconv (on) --with-iso8859x ISO-8859-X support if no iconv (on)
@ -61,7 +61,6 @@ The following options disable or enable code modules and relevant symbols:
--with-python Python bindings (on) --with-python Python bindings (on)
--with-reader xmlReader parsing interface (on) --with-reader xmlReader parsing interface (on)
--with-regexps regular expressions support (on) --with-regexps regular expressions support (on)
--with-run-debug runtime debugging module (off)
--with-sax1 older SAX1 interface (on) --with-sax1 older SAX1 interface (on)
--with-schemas XML Schemas 1.0 and RELAX NG support (on) --with-schemas XML Schemas 1.0 and RELAX NG support (on)
--with-schematron Schematron support (on) --with-schematron Schematron support (on)

View File

@ -78,7 +78,7 @@ AC_ARG_WITH(readline,
AC_ARG_WITH(html, AC_ARG_WITH(html,
[ --with-html HTML parser (on)]) [ --with-html HTML parser (on)])
AC_ARG_WITH(http, AC_ARG_WITH(http,
[ --with-http HTTP support (on)]) [ --with-http HTTP support (off)])
AC_ARG_WITH(iconv, AC_ARG_WITH(iconv,
[ --with-iconv[[=DIR]] iconv support (on)]) [ --with-iconv[[=DIR]] iconv support (on)])
AC_ARG_WITH(icu, AC_ARG_WITH(icu,

View File

@ -73,7 +73,6 @@ want_python = get_option('python')
want_reader = get_option('reader') want_reader = get_option('reader')
want_readline = get_option('readline') want_readline = get_option('readline')
want_regexps = get_option('regexps') want_regexps = get_option('regexps')
want_run_debug = get_option('run-debug')
want_sax1 = get_option('sax1') want_sax1 = get_option('sax1')
want_schemas = get_option('schemas') want_schemas = get_option('schemas')
want_schematron = get_option('schematron') want_schematron = get_option('schematron')
@ -198,7 +197,6 @@ if get_option('minimum')
want_reader = false want_reader = false
want_readline = false want_readline = false
want_regexps = false want_regexps = false
want_run_debug = false
want_sax1 = false want_sax1 = false
want_schemas = false want_schemas = false
want_schematron = false want_schematron = false
@ -846,7 +844,6 @@ summary(
'reader': want_reader, 'reader': want_reader,
'readline': want_readline, 'readline': want_readline,
'regexps': want_regexps, 'regexps': want_regexps,
'run-debug': want_run_debug,
'sax1': want_sax1, 'sax1': want_sax1,
'schemas': want_schemas, 'schemas': want_schemas,
'schematron': want_schematron, 'schematron': want_schematron,

View File

@ -22,7 +22,6 @@
# [X] reader # [X] reader
# [X] readline # [X] readline
# [X] regexps # [X] regexps
# [ ] run-debug - not used
# [X] sax1 # [X] sax1
# [X] schemas # [X] schemas
# [X] schematron # [X] schematron
@ -176,12 +175,6 @@ option('regexps',
description: 'Regular expressions support' description: 'Regular expressions support'
) )
option('run-debug',
type: 'boolean',
value: false,
description: 'Runtime debugging module'
)
option('sax1', option('sax1',
type: 'boolean', type: 'boolean',
value: true, value: true,