From: Pieter Lexis Date: Wed, 15 Mar 2017 12:26:45 +0000 (+0100) Subject: Add EDDSA support to configure summary X-Git-Tag: rec-4.1.0-alpha1~198^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a613e8b6335aa155457c60673fab30e2958dc9a9;p=pdns Add EDDSA support to configure summary --- diff --git a/configure.ac b/configure.ac index a43086bbc..0956e2fb1 100644 --- a/configure.ac +++ b/configure.ac @@ -348,6 +348,10 @@ AS_IF([test "x$libcrypto_ecdsa" == "xyes"], [AC_MSG_NOTICE([OpenSSL ecdsa: yes])], [AC_MSG_NOTICE([OpenSSL ecdsa: no])] ) +AS_IF([test "x$LIBSODIUM_LIBS" != "x"], + [AC_MSG_NOTICE([libsodium ed25519: yes])], + [AC_MSG_NOTICE([libsodium ed25519: no])] +) AS_IF([test "x$needsqlite3" != "x"], [AC_MSG_NOTICE([SQLite3: yes])], [AC_MSG_NOTICE([SQLite3: no])] diff --git a/pdns/recursordist/configure.ac b/pdns/recursordist/configure.ac index fa9fbd8a3..6f411e4a4 100644 --- a/pdns/recursordist/configure.ac +++ b/pdns/recursordist/configure.ac @@ -208,6 +208,10 @@ AS_IF([test "x$LUAPC" != "x"], [AC_MSG_NOTICE([Lua/LuaJit: no])]) ]) AC_MSG_NOTICE([OpenSSL ECDSA: $libcrypto_ecdsa]) +AS_IF([test "x$LIBSODIUM_LIBS" != "x"], + [AC_MSG_NOTICE([libsodium ed25519: yes])], + [AC_MSG_NOTICE([libsodium ed25519: no])] +) AS_IF([test "x$PROTOBUF_LIBS" != "x" -a x"$PROTOC" != "x"], [AC_MSG_NOTICE([Protobuf: yes])], [AC_MSG_NOTICE([Protobuf: no])]