]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix add missing DSA header, for compilation without deprecated
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 8 Jul 2020 09:43:50 +0000 (11:43 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 8 Jul 2020 09:43:50 +0000 (11:43 +0200)
  OpenSSL APIs.

doc/Changelog
validator/val_secalgo.c

index ff1f36bbeb08f27adfb47dfe068e17894992878b..5c257c7dcceb3ef84f7ebf22047beb67d8e4ca35 100644 (file)
@@ -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,
index 3dbbe9ac9dcaebbf90932a2ebdc152c9b1feba1b..65bca8b69d6e8a0a7f9800692a04e27520c7eb2e 100644 (file)
@@ -77,6 +77,10 @@ int fake_sha1 = 0;
 #include <openssl/engine.h>
 #endif
 
+#if defined(HAVE_OPENSSL_DSA_H) && defined(USE_DSA)
+#include <openssl/dsa.h>
+#endif
+
 /**
  * Output a libcrypto openssl error to the logfile.
  * @param str: string to add to it.