From f524993e70d06dfc0d047292a891b9c9aecb05e3 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Tue, 21 May 2024 20:56:55 +0200 Subject: [PATCH] build: Clean up configuration options Remove run-debug from meson. Fix documentation. --- README.md | 3 +-- configure.ac | 2 +- meson.build | 3 --- meson_options.txt | 7 ------- 4 files changed, 2 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 664bd371..58c9433f 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/configure.ac b/configure.ac index 270e3635..cb90a262 100644 --- a/configure.ac +++ b/configure.ac @@ -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, diff --git a/meson.build b/meson.build index d0d631d9..df626c6c 100644 --- a/meson.build +++ b/meson.build @@ -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, diff --git a/meson_options.txt b/meson_options.txt index 9c54df3a..8a50665b 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -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,