diff options
author | Kristian Fiskerstrand <[email protected]> | 2017-12-20 20:12:01 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-12-22 12:35:42 +0000 |
commit | a6849888295f0e0872c948cd72a59374bb867777 (patch) | |
tree | e086f9ca04318fca7b1447e6af8aa8a9f425ae98 | |
parent | kbx: Simplify by removing custom memory functions. (diff) | |
download | gnupg-a6849888295f0e0872c948cd72a59374bb867777.tar.gz gnupg-a6849888295f0e0872c948cd72a59374bb867777.zip |
build: Increase libassuan min version to 2.5.0
--
assuan_sock_set_system_hooks is used unconditionally in gnupg since
commit 9f641430dcdecbd7ee205d407cb19bb4262aa95d, and as such it requires
libassuan 2.5.0 (function introduced in
commit 90dc81682b13a7cf716a8a26b891051cbd4b0caf)
For a detailed description see:
https://lists.gnupg.org/pipermail/gnupg-devel/2017-December/033323.html
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 33148b4c2..c3fce317d 100644 --- a/configure.ac +++ b/configure.ac @@ -59,7 +59,7 @@ NEED_LIBGCRYPT_API=1 NEED_LIBGCRYPT_VERSION=1.7.0 NEED_LIBASSUAN_API=2 -NEED_LIBASSUAN_VERSION=2.4.3 +NEED_LIBASSUAN_VERSION=2.5.0 NEED_KSBA_API=1 NEED_KSBA_VERSION=1.3.4 |