1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2026-01-26 21:41:34 +03:00

Remove LZMA support

This commit is contained in:
Nick Wellnhofer
2025-09-08 15:29:23 +02:00
parent 063add1b29
commit 1763281cd6
30 changed files with 13 additions and 1119 deletions

View File

@@ -46,7 +46,6 @@ if py.found() == true
setup_py.set('LIBXML_VERSION', meson.project_version())
setup_py.set('WITH_ICONV', want_iconv.to_int())
setup_py.set('WITH_ICU', want_icu.to_int())
setup_py.set('WITH_LZMA', want_lzma.to_int())
setup_py.set('WITH_ZLIB', want_zlib.to_int())
setup_py.set('WITH_THREADS', want_threads.to_int())
configure_file(

View File

@@ -26,7 +26,6 @@ with_threads = @WITH_THREADS@
# Features of libxml2 requiring external DLLs
with_iconv = @WITH_ICONV@
with_zlib = @WITH_ZLIB@
with_lzma = @WITH_LZMA@
with_icu = @WITH_ICU@
icu_series = 69
@@ -40,7 +39,6 @@ else:
# (Check the value of `icu_series` above as well)
iconv_dll = 'iconv.dll'
zlib_dll = 'zlib1.dll'
lzma_dll = 'liblzma.dll'
icu_dlls = ['icuuc%s.dll' % icu_series_s, 'icudt%s.dll' % icu_series_s]
# If this flag is set (windows only),
@@ -160,8 +158,6 @@ if WITHDLLS:
if with_zlib == 1:
dlls.append(zlib_dll)
if with_lzma == 1:
dlls.append(lzma_dll)
if with_iconv == 1:
dlls.append(iconv_dll)
if with_icu == 1: