diff options
author | Werner Koch <wk@gnupg.org> | 2023-09-21 13:32:56 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2023-09-26 14:13:51 +0200 |
commit | 3054016db9da31f3c18aed8158f764b14e021754 (patch) | |
tree | 5f29e2c2e6a3c15a98b0334c9ddaf6eba33383ac /configure.ac | |
parent | dirmngr: Improve error codes returned from http fetching. (diff) | |
download | gnupg2-3054016db9da31f3c18aed8158f764b14e021754.tar.xz gnupg2-3054016db9da31f3c18aed8158f764b14e021754.zip |
dirmngr: Require gnutls 3.2
* dirmngr/http.c: Remove gnutls version specific code.
(send_request): Factor some code out to ...
(run_proxy_connect): new.
(mk_proxy_request): new.
(mk_std_request): new.
* configure.ac (NEED_GNUTLS_VERSION): Require 3.2.
--
This patch is to factor out some code and also to remove support for
legacy gnutls versions. Note that gnutls 3.2 was released 10 years
ago.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cfe6091b5..6f544bf98 100644 --- a/configure.ac +++ b/configure.ac @@ -73,7 +73,7 @@ NEED_NPTH_API=1 NEED_NPTH_VERSION=1.2 -NEED_GNUTLS_VERSION=3.0 +NEED_GNUTLS_VERSION=3.2 NEED_SQLITE_VERSION=3.27 |