external/libxml2/ExternalProject_libxml2.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 87a485f5ee4ee9c7b6d711efaffa4a833909a849 Author: Xisco Fauli <[email protected]> AuthorDate: Wed Mar 4 12:38:45 2026 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Wed Mar 4 13:40:06 2026 +0100 libxml2: fix configure unrecognized options --disable-ipv6 was dropped in libxml2 2.14 Change-Id: I1150a310906e4ba2aaab90ed6de017234dc720a0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200940 Reviewed-by: Xisco Fauli <[email protected]> Tested-by: Jenkins diff --git a/external/libxml2/ExternalProject_libxml2.mk b/external/libxml2/ExternalProject_libxml2.mk index e42cc4797477..5c3b165e0c67 100644 --- a/external/libxml2/ExternalProject_libxml2.mk +++ b/external/libxml2/ExternalProject_libxml2.mk @@ -35,9 +35,9 @@ else # OS!=WNT $(call gb_ExternalProject_get_state_target,libxml2,build): $(call gb_Trace_StartRange,libxml2,EXTERNAL) $(call gb_ExternalProject_run,build,\ - $(gb_RUN_CONFIGURE) ./configure --disable-ipv6 --without-iconv --without-python --without-zlib --with-sax1 \ + $(gb_RUN_CONFIGURE) ./configure --without-iconv --without-python --without-zlib --with-sax1 \ --without-lzma \ - $(if $(debug),--with-run-debug) \ + $(if $(debug),--with-debug) \ $(if $(verbose),--disable-silent-rules,--enable-silent-rules) \ $(gb_CONFIGURE_PLATFORMS) \ $(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________URELIB) \
