From: W.C.A. Wijngaards Date: Wed, 8 Jul 2020 09:43:50 +0000 (+0200) Subject: - Fix add missing DSA header, for compilation without deprecated X-Git-Tag: release-1.11.0~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff50993f3614c11c5c367b83e4e259f8b3e673fb;p=thirdparty%2Funbound.git - Fix add missing DSA header, for compilation without deprecated OpenSSL APIs. --- diff --git a/doc/Changelog b/doc/Changelog index ff1f36bbe..5c257c7dc 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +8 July 2020: Wouter + - Fix add missing DSA header, for compilation without deprecated + OpenSSL APIs. + 7 July 2020: Wouter - Fix #259: Fix unbound-checkconf does not check view existence. unbound-checkconf checks access-control-view, access-control-tags, diff --git a/validator/val_secalgo.c b/validator/val_secalgo.c index 3dbbe9ac9..65bca8b69 100644 --- a/validator/val_secalgo.c +++ b/validator/val_secalgo.c @@ -77,6 +77,10 @@ int fake_sha1 = 0; #include #endif +#if defined(HAVE_OPENSSL_DSA_H) && defined(USE_DSA) +#include +#endif + /** * Output a libcrypto openssl error to the logfile. * @param str: string to add to it.