From 690e543e8aac53b2a043f379cddf7cd856f39ae2 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Tue, 28 Jul 2015 00:57:36 +0300 Subject: [PATCH] OpenSSL: Include openssl/engine.h and openssl/dsa.h explicitly This seems to be needed for OpenSSL 1.1.0. Signed-off-by: Jouni Malinen --- src/crypto/tls_openssl.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/crypto/tls_openssl.c b/src/crypto/tls_openssl.c index 3015a152a..85bea7209 100644 --- a/src/crypto/tls_openssl.c +++ b/src/crypto/tls_openssl.c @@ -23,6 +23,12 @@ #ifndef OPENSSL_NO_ENGINE #include #endif /* OPENSSL_NO_ENGINE */ +#ifndef OPENSSL_NO_DSA +#include +#endif +#ifndef OPENSSL_NO_DH +#include +#endif #include "common.h" #include "crypto.h"