1
1

openssl.h: adjust the rsa/dsa includes

... to work when built without DSA support.

Closes #36
Этот коммит содержится в:
Mizunashi Mana 2015-08-06 00:42:55 +09:00 коммит произвёл Daniel Stenberg
родитель 36f6d23572
Коммит f4b5947d6d

Просмотреть файл

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