aboutsummaryrefslogtreecommitdiffstats
path: root/community/mongodb/fix-libressl.patch
diff options
context:
space:
mode:
authorAndy Postnikov <apostnikov@gmail.com>2018-08-14 21:19:33 +0300
committerNatanael Copa <ncopa@alpinelinux.org>2018-08-17 14:03:30 +0000
commit6c9915aaa5500a3fdecd689b88b2691f14ee1ce3 (patch)
tree9f62615c862106ad925124d6dd845f5058fb843f /community/mongodb/fix-libressl.patch
parent9d7cc418f0cb3b905d0a707e6b8471b799bdd807 (diff)
downloadaports-6c9915aaa5500a3fdecd689b88b2691f14ee1ce3.tar.bz2
aports-6c9915aaa5500a3fdecd689b88b2691f14ee1ce3.tar.xz
community/mongodb: upgrade to 4.0.1, modernize
Diffstat (limited to 'community/mongodb/fix-libressl.patch')
-rw-r--r--community/mongodb/fix-libressl.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/community/mongodb/fix-libressl.patch b/community/mongodb/fix-libressl.patch
deleted file mode 100644
index 983238b856..0000000000
--- a/community/mongodb/fix-libressl.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- mongodb-src-r4.0.0/src/mongo/util/net/ssl_manager_openssl.cpp.orig
-+++ mongodb-src-r4.0.0/src/mongo/util/net/ssl_manager_openssl.cpp
-@@ -169,7 +169,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.
---- mongodb-src-r4.0.0/src/mongo/crypto/sha_block_openssl.cpp.orig
-+++ mongodb-src-r4.0.0/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.