aboutsummaryrefslogtreecommitdiffstats
path: root/community/mongodb/fix-libressl.patch
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2018-01-02 11:20:46 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2018-01-04 07:06:40 +0000
commite94cb28568e3712b39d5d37f37c5cc8b2bf32f0a (patch)
tree83becb8e23a0e12d4578312074a9df049db58e92 /community/mongodb/fix-libressl.patch
parentbca8323793a4c8ddfdb1f7f865cbfa62e93056aa (diff)
downloadaports-e94cb28568e3712b39d5d37f37c5cc8b2bf32f0a.tar.bz2
aports-e94cb28568e3712b39d5d37f37c5cc8b2bf32f0a.tar.xz
community/mongodb: upgrade to 3.6.1
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 1113589655..0000000000
--- a/community/mongodb/fix-libressl.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- mongodb-src-r3.4.7/src/mongo/crypto/sha1_block_openssl.cpp.orig
-+++ mongodb-src-r3.4.7/src/mongo/crypto/sha1_block_openssl.cpp
-@@ -42,7 +42,7 @@
- #include <openssl/evp.h>
- #include <openssl/hmac.h>
- #include <openssl/sha.h>
--#if OPENSSL_VERSION_NUMBER < 0x10100000L
-+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
- namespace {
- // Copies of OpenSSL after 1.1.0 define new EVP digest routines. We must
- // polyfill used definitions to interact with older OpenSSL versions.
---- mongodb-src-r3.4.7/src/mongo/util/net/ssl_manager.cpp.orig
-+++ mongodb-src-r3.4.7/src/mongo/util/net/ssl_manager.cpp
-@@ -150,7 +150,7 @@
- #endif // MONGO_CONFIG_NEEDS_ASN1_ANY_DEFINITIONS
- // clang-format on
-
--#if OPENSSL_VERSION_NUMBER < 0x10100000L
-+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
- // 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.