1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-30 20:24:15 +00:00

fixed build error for clang

This commit is contained in:
orignal 2016-11-04 12:13:03 -04:00
parent 9ba9bd4415
commit 70fcd93ca7

View File

@ -283,7 +283,7 @@ namespace crypto
// take care about openssl version
#include <openssl/opensslv.h>
#if !(OPENSSL_VERSION_NUMBER >= 0x010100000) // < 1.1.0 or non-OpenSSL
#if (OPENSSL_VERSION_NUMBER < 0x010100000) || defined(LIBRESSL_VERSION_NUMBER) // 1.1.0 or LibreSSL
// define getters and setters introduced in 1.1.0
inline int DSA_set0_pqg(DSA *d, BIGNUM *p, BIGNUM *q, BIGNUM *g)
{ d->p = p; d->q = q; d->g = g; return 1; }