mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-15 10:40:50 -04:00
fix: dev: Fix compatibility with OpenSSL 1.0.2u
BIND failed to build with OpenSSL 1.0.2u. Add the missing header file includes. Merge branch 'aram/openssl-1.0.2-compat-fix-9.20' into 'bind-9.20' See merge request isc-projects/bind9!11897
This commit is contained in:
commit
11fcd8206a
2 changed files with 4 additions and 0 deletions
|
|
@ -16,6 +16,7 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <openssl/crypto.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/opensslv.h>
|
||||
#include <openssl/ssl.h>
|
||||
|
|
|
|||
|
|
@ -25,6 +25,9 @@
|
|||
#include <openssl/conf.h>
|
||||
#include <openssl/crypto.h>
|
||||
#include <openssl/dh.h>
|
||||
#if !defined(OPENSSL_NO_ENGINE) && OPENSSL_API_LEVEL < 30000
|
||||
#include <openssl/engine.h>
|
||||
#endif /* if !defined(OPENSSL_NO_ENGINE) && OPENSSL_API_LEVEL < 30000 */
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/opensslv.h>
|
||||
|
|
|
|||
Loading…
Reference in a new issue