From f4b5947d6d29f263f21fe462a86eb71108cda70d Mon Sep 17 00:00:00 2001 From: Mizunashi Mana Date: Thu, 6 Aug 2015 00:42:55 +0900 Subject: [PATCH] openssl.h: adjust the rsa/dsa includes ... to work when built without DSA support. Closes #36 --- src/openssl.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/openssl.h b/src/openssl.h index 00afd1d2..a571309d 100644 --- a/src/openssl.h +++ b/src/openssl.h @@ -39,6 +39,10 @@ #include #include +#include +#ifndef OPENSSL_NO_DSA +#include +#endif #ifndef OPENSSL_NO_MD5 #include #endif