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:
Arаm Sаrgsyаn 2026-06-12 23:42:30 +00:00
commit 11fcd8206a
2 changed files with 4 additions and 0 deletions

View file

@ -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>

View file

@ -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>