mirror of
https://github.com/xmrig/xmrig.git
synced 2025-01-10 12:54:33 +00:00
#1654 Fixed build with LibreSSL.
This commit is contained in:
parent
ca7ff4e90b
commit
11ac59331f
3 changed files with 13 additions and 4 deletions
|
@ -79,10 +79,14 @@ static int showVersion()
|
||||||
|
|
||||||
printf("\nlibuv/%s\n", uv_version_string());
|
printf("\nlibuv/%s\n", uv_version_string());
|
||||||
|
|
||||||
# if defined(XMRIG_FEATURE_TLS) && defined(OPENSSL_VERSION_TEXT)
|
# if defined(XMRIG_FEATURE_TLS)
|
||||||
{
|
{
|
||||||
|
# if defined(LIBRESSL_VERSION_TEXT)
|
||||||
|
printf("LibreSSL/%s\n", LIBRESSL_VERSION_TEXT + 9);
|
||||||
|
# elif defined(OPENSSL_VERSION_TEXT)
|
||||||
constexpr const char *v = OPENSSL_VERSION_TEXT + 8;
|
constexpr const char *v = OPENSSL_VERSION_TEXT + 8;
|
||||||
printf("OpenSSL/%.*s\n", static_cast<int>(strchr(v, ' ') - v), v);
|
printf("OpenSSL/%.*s\n", static_cast<int>(strchr(v, ' ') - v), v);
|
||||||
|
# endif
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
|
|
@ -145,11 +145,16 @@ void xmrig::BaseConfig::printVersions()
|
||||||
|
|
||||||
std::string libs;
|
std::string libs;
|
||||||
|
|
||||||
# if defined(XMRIG_FEATURE_TLS) && defined(OPENSSL_VERSION_TEXT)
|
# if defined(XMRIG_FEATURE_TLS)
|
||||||
{
|
{
|
||||||
|
# if defined(LIBRESSL_VERSION_TEXT)
|
||||||
|
snprintf(buf, sizeof buf, "LibreSSL/%s ", LIBRESSL_VERSION_TEXT + 9);
|
||||||
|
libs += buf;
|
||||||
|
# elif defined(OPENSSL_VERSION_TEXT)
|
||||||
constexpr const char *v = OPENSSL_VERSION_TEXT + 8;
|
constexpr const char *v = OPENSSL_VERSION_TEXT + 8;
|
||||||
snprintf(buf, sizeof buf, "OpenSSL/%.*s ", static_cast<int>(strchr(v, ' ') - v), v);
|
snprintf(buf, sizeof buf, "OpenSSL/%.*s ", static_cast<int>(strchr(v, ' ') - v), v);
|
||||||
libs += buf;
|
libs += buf;
|
||||||
|
# endif
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
|
|
@ -156,7 +156,7 @@ bool xmrig::TlsContext::load(const TlsConfig &config)
|
||||||
SSL_CTX_set_options(m_ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3);
|
SSL_CTX_set_options(m_ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3);
|
||||||
SSL_CTX_set_options(m_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
|
SSL_CTX_set_options(m_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
|
||||||
|
|
||||||
# if OPENSSL_VERSION_NUMBER >= 0x1010100fL
|
# if OPENSSL_VERSION_NUMBER >= 0x1010100fL && !defined(LIBRESSL_VERSION_NUMBER)
|
||||||
SSL_CTX_set_max_early_data(m_ctx, 0);
|
SSL_CTX_set_max_early_data(m_ctx, 0);
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
@ -184,7 +184,7 @@ bool xmrig::TlsContext::setCipherSuites(const char *ciphersuites)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
# if OPENSSL_VERSION_NUMBER >= 0x1010100fL
|
# if OPENSSL_VERSION_NUMBER >= 0x1010100fL && !defined(LIBRESSL_VERSION_NUMBER)
|
||||||
if (SSL_CTX_set_ciphersuites(m_ctx, ciphersuites) == 1) {
|
if (SSL_CTX_set_ciphersuites(m_ctx, ciphersuites) == 1) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue