From: Pieter Lexis Date: Tue, 5 Sep 2017 09:32:58 +0000 (+0200) Subject: Report PKCS#11 support in configure and --version X-Git-Tag: rec-4.1.0-rc1~47^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=91bc549f6caf52fb14bcccee2b47e329375737cb;p=thirdparty%2Fpdns.git Report PKCS#11 support in configure and --version --- 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