From 17e0cee39803399522882b359cbc780d38e3a4f4 Mon Sep 17 00:00:00 2001 From: Nick Hainke Date: Tue, 5 Jul 2022 08:49:36 +0200 Subject: [PATCH 1/2] gnutls: fix disable zstd Configure.ac syntax changed to: Old: --without-libbrotli --without-libzstd (also --with-*) New: --without-brotli --without-zstd (also --with-*) https://github.com/gnutls/gnutls/commit/6b794e49d1a14e43f9e08023f958364712c3c89a Fixes: 6385813ddfb4 ("gnutls: update to 3.7.5") Signed-off-by: Nick Hainke --- libs/gnutls/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/gnutls/Makefile b/libs/gnutls/Makefile index d8d88953d..919f6f590 100644 --- a/libs/gnutls/Makefile +++ b/libs/gnutls/Makefile @@ -135,8 +135,8 @@ CONFIGURE_ARGS+= \ --with-librt-prefix="$(LIBRT_ROOT_DIR)/" \ --with-pic \ --with-system-priority-file="" \ - --without-libzstd \ - --without-zlib + --without-zlib \ + --without-zstd ifneq ($(CONFIG_GNUTLS_EXT_LIBTASN1),y) CONFIGURE_ARGS += --with-included-libtasn1 From 5b96851b8ca28b1003f5f8834ac6f7408934e585 Mon Sep 17 00:00:00 2001 From: Nick Hainke Date: Tue, 5 Jul 2022 15:30:48 +0200 Subject: [PATCH 2/2] gnutls: disable brotli Disable the brotli library by default. It is not used and may prevent linking issues in the future. Signed-off-by: Nick Hainke --- libs/gnutls/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/gnutls/Makefile b/libs/gnutls/Makefile index 919f6f590..4c5af6a0f 100644 --- a/libs/gnutls/Makefile +++ b/libs/gnutls/Makefile @@ -135,6 +135,7 @@ CONFIGURE_ARGS+= \ --with-librt-prefix="$(LIBRT_ROOT_DIR)/" \ --with-pic \ --with-system-priority-file="" \ + --without-brotli \ --without-zlib \ --without-zstd