From: Jouni Malinen Date: Mon, 27 Jul 2015 21:57:36 +0000 (+0300) Subject: OpenSSL: Include openssl/engine.h and openssl/dsa.h explicitly X-Git-Tag: hostap_2_5~280 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=690e543e8aac53b2a043f379cddf7cd856f39ae2;p=thirdparty%2Fhostap.git 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 --- 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"