mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
build: Clean up configuration options
Remove run-debug from meson. Fix documentation.
This commit is contained in:
parent
11ce63f02b
commit
f524993e70
@ -49,7 +49,7 @@ The following options disable or enable code modules and relevant symbols:
|
||||
--with-history history support for shell (off)
|
||||
--with-readline[=DIR] use readline in DIR (for shell history)
|
||||
--with-html HTML parser (on)
|
||||
--with-http HTTP support (on)
|
||||
--with-http HTTP support (off)
|
||||
--with-iconv[=DIR] iconv support (on)
|
||||
--with-icu ICU support (off)
|
||||
--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-reader xmlReader parsing interface (on)
|
||||
--with-regexps regular expressions support (on)
|
||||
--with-run-debug runtime debugging module (off)
|
||||
--with-sax1 older SAX1 interface (on)
|
||||
--with-schemas XML Schemas 1.0 and RELAX NG support (on)
|
||||
--with-schematron Schematron support (on)
|
||||
|
@ -78,7 +78,7 @@ AC_ARG_WITH(readline,
|
||||
AC_ARG_WITH(html,
|
||||
[ --with-html HTML parser (on)])
|
||||
AC_ARG_WITH(http,
|
||||
[ --with-http HTTP support (on)])
|
||||
[ --with-http HTTP support (off)])
|
||||
AC_ARG_WITH(iconv,
|
||||
[ --with-iconv[[=DIR]] iconv support (on)])
|
||||
AC_ARG_WITH(icu,
|
||||
|
@ -73,7 +73,6 @@ want_python = get_option('python')
|
||||
want_reader = get_option('reader')
|
||||
want_readline = get_option('readline')
|
||||
want_regexps = get_option('regexps')
|
||||
want_run_debug = get_option('run-debug')
|
||||
want_sax1 = get_option('sax1')
|
||||
want_schemas = get_option('schemas')
|
||||
want_schematron = get_option('schematron')
|
||||
@ -198,7 +197,6 @@ if get_option('minimum')
|
||||
want_reader = false
|
||||
want_readline = false
|
||||
want_regexps = false
|
||||
want_run_debug = false
|
||||
want_sax1 = false
|
||||
want_schemas = false
|
||||
want_schematron = false
|
||||
@ -846,7 +844,6 @@ summary(
|
||||
'reader': want_reader,
|
||||
'readline': want_readline,
|
||||
'regexps': want_regexps,
|
||||
'run-debug': want_run_debug,
|
||||
'sax1': want_sax1,
|
||||
'schemas': want_schemas,
|
||||
'schematron': want_schematron,
|
||||
|
@ -22,7 +22,6 @@
|
||||
# [X] reader
|
||||
# [X] readline
|
||||
# [X] regexps
|
||||
# [ ] run-debug - not used
|
||||
# [X] sax1
|
||||
# [X] schemas
|
||||
# [X] schematron
|
||||
@ -176,12 +175,6 @@ option('regexps',
|
||||
description: 'Regular expressions support'
|
||||
)
|
||||
|
||||
option('run-debug',
|
||||
type: 'boolean',
|
||||
value: false,
|
||||
description: 'Runtime debugging module'
|
||||
)
|
||||
|
||||
option('sax1',
|
||||
type: 'boolean',
|
||||
value: true,
|
||||
|
Loading…
x
Reference in New Issue
Block a user