From 6b794e49d1a14e43f9e08023f958364712c3c89a Mon Sep 17 00:00:00 2001 From: Sam James Date: Fri, 18 Mar 2022 05:40:28 +0000 Subject: configure.ac: fix brotli/zstd configure argument name The old `./configure` arguments for brotli and zstd respectively were inconsistent with the `./configure --help` output. Old: --without-libbrotli --without-libzstd (also --with-*) New: --without-brotli --without-zstd (also --with-*) Fixes: https://gitlab.com/gnutls/gnutls/-/issues/1342 Signed-off-by: Sam James --- NEWS | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'NEWS') diff --git a/NEWS b/NEWS index 36381f0b86..7316a19266 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,13 @@ Copyright (C) 2000-2016 Free Software Foundation, Inc. Copyright (C) 2013-2019 Nikos Mavrogiannopoulos See the end for copying conditions. +* Version ?.?.? (released ????-??-??) + +** The configure arguments for Brotli and Zstandard (zstd) support + have changed to reflect the previous help text: they are now + --with-brotli/--with-zstd respectively (#1342). + + * Version 3.7.4 (released 2022-03-17) ** libgnutls: Added support for certificate compression as defined in RFC8879. -- cgit v1.2.1 From 33a9c32a31b246a10af5aaf413ae6e927810e723 Mon Sep 17 00:00:00 2001 From: Sam James Date: Fri, 18 Mar 2022 05:51:29 +0000 Subject: configure.ac: fix zstd detection Fixes typo in zstd detection. None of the used autoconf macros will define `has_zstd_h` so configure will (AFAICT) always fail to find zstd, even if it succeeded via pkg-config moments before. Drop it and rely solely on pkg-config as that's the only search we're actually doing. Fixes: https://gitlab.com/gnutls/gnutls/-/issues/1343 Signed-off-by: Sam James --- NEWS | 2 ++ 1 file changed, 2 insertions(+) (limited to 'NEWS') diff --git a/NEWS b/NEWS index 7316a19266..0f3b18311e 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,8 @@ See the end for copying conditions. have changed to reflect the previous help text: they are now --with-brotli/--with-zstd respectively (#1342). +** Detecting the Zstandard (zstd) library in configure has been + fixed (#1343). * Version 3.7.4 (released 2022-03-17) -- cgit v1.2.1