Fix compile error when building with LibreSSL

Add preprocessor check of LibreSSL version.
This commit is contained in:
Anton Kashcheev 2018-06-12 23:19:16 +03:00 committed by Alex
parent 22b0cffccd
commit 21e7a1bbb0
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ using std::string;
namespace MTP {
namespace {
#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
// This is a key setter for compatibility with OpenSSL 1.0
int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d) {