mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
- rebuild against new libressl - remove libressl checks as of https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.7.0-relnotes.txt this should be converted to a version check and send upstream - disable tests because of 35GB+ disk usage - it seems that tests fail because of missing headers due to test build is build without local libs.
23 lines
921 B
Diff
23 lines
921 B
Diff
--- ./src/mongo/crypto/sha_block_openssl.cpp.orig
|
|
+++ ./src/mongo/crypto/sha_block_openssl.cpp
|
|
@@ -44,7 +44,7 @@
|
|
#include <openssl/hmac.h>
|
|
#include <openssl/sha.h>
|
|
|
|
-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
|
|
+#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
|
namespace {
|
|
// Copies of OpenSSL after 1.1.0 define new EVP digest routines. We must
|
|
// polyfill used definitions to interact with older OpenSSL versions.
|
|
--- ./src/mongo/util/net/ssl_manager.cpp.orig
|
|
+++ ./src/mongo/util/net/ssl_manager.cpp
|
|
@@ -237,7 +237,7 @@
|
|
#endif // MONGO_CONFIG_NEEDS_ASN1_ANY_DEFINITIONS
|
|
// clang-format on
|
|
|
|
-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
|
|
+#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
|
// Copies of OpenSSL after 1.1.0 define new functions for interaction with
|
|
// X509 structure. We must polyfill used definitions to interact with older
|
|
// OpenSSL versions.
|