diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-07-18 08:23:01 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2018-02-19 15:29:33 +0100 |
commit | 6ac1e69039914bde701457edb242e45e0b7463d1 (patch) | |
tree | 58ab0a01332159684c4d6980de644cc7b5a427d0 /configure.ac | |
parent | 35662d783dd280e911afcd483d38490e42c284b9 (diff) | |
download | gnutls-6ac1e69039914bde701457edb242e45e0b7463d1.tar.gz |
require nettle 3.3 or later
This will simplify handling of the x25519 key exchange.
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 74822e27ad..def64b5009 100644 --- a/configure.ac +++ b/configure.ac @@ -477,13 +477,6 @@ fi PKG_CHECK_MODULES(CMOCKA, [cmocka >= 1.0.1], [with_cmocka=yes], [with_cmocka=no]) AM_CONDITIONAL(HAVE_CMOCKA, test "$with_cmocka" != "no") -with_old_nettle=no -if ! $PKG_CONFIG --atleast-version=3.3 nettle; then - with_old_nettle=yes -fi -AM_CONDITIONAL(WITH_OLD_NETTLE, test "$with_old_nettle" != "no") - - AC_ARG_WITH(idn, AS_HELP_STRING([--without-idn], [disable support for IDNA]), try_libidn2="$withval", |