From 91bc549f6caf52fb14bcccee2b47e329375737cb Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Tue, 5 Sep 2017 11:32:58 +0200 Subject: [PATCH] Report PKCS#11 support in configure and --version --- configure.ac | 3 +++ pdns/version.cc | 3 +++ 2 files changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index e478e668bd..948393afd4 100644 --- a/configure.ac +++ b/configure.ac @@ -367,6 +367,9 @@ AS_IF([test "x$LUAPC" != "x"], [AC_MSG_NOTICE([LuaJit: $LUAJITPC])], [AC_MSG_NOTICE([Lua/LuaJit: no])]) ]) +AS_IF([test "x$enable_experimental_pkcs11" = "xyes"], + [AC_MSG_NOTICE([PKCS-11: yes])] +) AS_IF([test "x$enable_experimental_gss_tsig" = "xyes"], [AC_MSG_NOTICE([GSS-TSIG: yes])] ) diff --git a/pdns/version.cc b/pdns/version.cc index 4ed8b7be0b..5c37324d15 100644 --- a/pdns/version.cc +++ b/pdns/version.cc @@ -102,6 +102,9 @@ void showBuildConfiguration() #ifdef REMOTEBACKEND_ZEROMQ "remotebackend-zeromq" << #endif +#ifdef HAVE_P11KIT1 + "PKCS#11" << +#endif #ifdef VERBOSELOG "verboselog" << #endif -- 2.47.2