mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-23 08:10:30 -05:00
- Fix add missing DSA header, for compilation without deprecated
OpenSSL APIs.
This commit is contained in:
parent
d84529cc0e
commit
ff50993f36
2 changed files with 8 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
8 July 2020: Wouter
|
||||||
|
- Fix add missing DSA header, for compilation without deprecated
|
||||||
|
OpenSSL APIs.
|
||||||
|
|
||||||
7 July 2020: Wouter
|
7 July 2020: Wouter
|
||||||
- Fix #259: Fix unbound-checkconf does not check view existence.
|
- Fix #259: Fix unbound-checkconf does not check view existence.
|
||||||
unbound-checkconf checks access-control-view, access-control-tags,
|
unbound-checkconf checks access-control-view, access-control-tags,
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,10 @@ int fake_sha1 = 0;
|
||||||
#include <openssl/engine.h>
|
#include <openssl/engine.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(HAVE_OPENSSL_DSA_H) && defined(USE_DSA)
|
||||||
|
#include <openssl/dsa.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Output a libcrypto openssl error to the logfile.
|
* Output a libcrypto openssl error to the logfile.
|
||||||
* @param str: string to add to it.
|
* @param str: string to add to it.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue