Hash :
e50d314a
Author :
Date :
2025-02-25T23:07:19
build: Add separate configuration option for RELAX NG Support for RELAX NG used to be enabled together with XML Schema support (--with-schemas). Now there's a separate option and a new feature macro LIBXML_RELAXNG_ENABLED.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
# AC_ARG_WITH / AC_ARG_ENABLE in configure.ac
# [X] c14n
# [X] catalog
# [X] debugging
# [X] history
# [X] html
# [X] http
# [X] iconv
# [X] icu - not minimum
# [X] iso8859x
# [X] legacy
# [X] lzma
# [X] modules
# [X] output
# [X] pattern
# [X] push
# [ ] python
# [X] reader
# [X] readline
# [X] regexps
# [X] sax1
# [X] schemas
# [X] schematron
# [X] threads
# [X] thread-alloc
# [X] tls
# [X] valid
# [X] writer
# [X] xinclude
# [X] xpath
# [X] xptr
# [X] zlib
# [X] minimum
option('c14n',
type: 'feature',
description: 'Canonical XML 1.0 support'
)
option('catalog',
type: 'feature',
description: 'XML Catalogs support'
)
option('debugging',
type: 'feature',
description: 'Debugging module and shell'
)
option('history',
type: 'feature',
description: 'History support for shell'
)
option('html',
type: 'feature',
description: 'HTML parser'
)
option('http',
type: 'feature',
description: 'HTTP support'
)
# TODO meson custom dependency
option('iconv',
type: 'feature',
description: 'iconv support'
)
option('icu',
type: 'feature',
value: 'disabled',
description: 'ICU support'
)
option('iso8859x',
type: 'feature',
description: 'ISO-8859-X support if no iconv'
)
option('legacy',
type: 'feature',
value: 'disabled',
description: 'Maximum ABI compatibility'
)
option('lzma',
type: 'feature',
description: 'LZMA support'
)
option('modules',
type: 'feature',
description: 'Dynamic modules support'
)
option('output',
type: 'feature',
description: 'Serialization support'
)
option('pattern',
type: 'feature',
description: 'xmlPattern selection interface'
)
option('push',
type: 'feature',
description: 'push parser interfaces'
)
option('python',
type: 'feature',
description: 'Python bindings'
)
option('reader',
type: 'feature',
description: 'xmlReader parsing interface'
)
option('readline',
type: 'feature',
description: 'use readline for shell history'
)
option('regexps',
type: 'feature',
description: 'Regular expressions support'
)
option('relaxng',
type: 'feature',
description: 'RELAX NG support'
)
option('sax1',
type: 'feature',
description: 'Older SAX1 interface'
)
option('schemas',
type: 'feature',
description: 'XML Schemas 1.0 support'
)
option('schematron',
type: 'feature',
description: 'Schematron support'
)
option('threads',
type: 'feature',
description: 'Multithreading support'
)
option('thread-alloc',
type: 'feature',
value: 'disabled',
description: 'per-thread malloc hooks'
)
option('tls',
type: 'feature',
value: 'disabled',
description: 'thread-local storage'
)
option('valid',
type: 'feature',
description: 'DTD validation support'
)
option('writer',
type: 'feature',
description: 'xmlWriter serialization interface'
)
option('xinclude',
type: 'feature',
description: 'XInclude 1.0 support'
)
option('xpath',
type: 'feature',
description: 'XPath 1.0 support'
)
option('xptr',
type: 'feature',
description: 'XPointer support'
)
option('zlib',
type: 'feature',
description: 'ZLIB support'
)
option('minimum',
type: 'boolean',
value: false,
description: 'build a minimally sized library'
)