diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2018-06-13 12:12:18 +0300 |
---|---|---|
committer | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2018-06-13 22:58:11 +0000 |
commit | 750ddddfa482ed80889d2a9016c05aac3a74491f (patch) | |
tree | 9f162139e47c653303e656b721e9dc2e52a7655b /m4 | |
parent | 06ae64c2983d824a1086092169f2eb04a467ac2e (diff) | |
download | gnutls-750ddddfa482ed80889d2a9016c05aac3a74491f.tar.gz |
nettle: require Nettle library >= 3.4
Nettle version 3.4 was released more than a half year ago, require it to
compile GnuTLS library. It allows us to remove bundled code that was
merged into that release.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'm4')
-rw-r--r-- | m4/hooks.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/hooks.m4 b/m4/hooks.m4 index f407753b74..69d9d8c184 100644 --- a/m4/hooks.m4 +++ b/m4/hooks.m4 @@ -68,13 +68,13 @@ AC_DEFUN([LIBGNUTLS_HOOKS], DLL_SSL_VERSION=`expr ${LT_SSL_CURRENT} - ${LT_SSL_AGE}` AC_SUBST(DLL_SSL_VERSION) - PKG_CHECK_MODULES(NETTLE, [nettle >= 3.3], [cryptolib="nettle"], [ + PKG_CHECK_MODULES(NETTLE, [nettle >= 3.4], [cryptolib="nettle"], [ AC_MSG_ERROR([[ *** - *** Libnettle 3.3 was not found. + *** Libnettle 3.4 was not found. ]]) ]) - PKG_CHECK_MODULES(HOGWEED, [hogweed >= 3.3], [], [ + PKG_CHECK_MODULES(HOGWEED, [hogweed >= 3.4], [], [ AC_MSG_ERROR([[ *** *** Libhogweed (nettle's companion library) was not found. Note that you must compile nettle with gmp support. |