openssl.h: adjust the rsa/dsa includes

... to work when built without DSA support.

Closes #36
This commit is contained in:
Mizunashi Mana 2015-08-06 00:42:55 +09:00 committed by Daniel Stenberg
parent 36f6d23572
commit f4b5947d6d

View File

@ -39,6 +39,10 @@
#include <openssl/opensslconf.h>
#include <openssl/sha.h>
#include <openssl/rsa.h>
#ifndef OPENSSL_NO_DSA
#include <openssl/dsa.h>
#endif
#ifndef OPENSSL_NO_MD5
#include <openssl/md5.h>
#endif