View | Details | Raw Unified | Return to bug 234316 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-2 / +1 lines)
Lines 2-9 Link Here
2
2
3
PORTNAME=	mongodb
3
PORTNAME=	mongodb
4
DISTVERSIONPREFIX=	r
4
DISTVERSIONPREFIX=	r
5
DISTVERSION=	3.6.6
5
DISTVERSION=	3.6.10
6
PORTREVISION=	4
7
CATEGORIES=	databases net
6
CATEGORIES=	databases net
8
MASTER_SITES=	https://fastdl.mongodb.org/src/ \
7
MASTER_SITES=	https://fastdl.mongodb.org/src/ \
9
		http://fastdl.mongodb.org/src/ \
8
		http://fastdl.mongodb.org/src/ \
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1532785629
1
TIMESTAMP = 1549285807
2
SHA256 (mongodb-src-r3.6.6.tar.gz) = e3b9e30941f314d0b1d89f85af3b1258aa2f72a9df21e44cf4aa08faf262e406
2
SHA256 (mongodb-src-r3.6.10.tar.gz) = b5972e7cbee1753e991bef54370f37e71ba5cbd6cbe32730ed8682ca02ebc110
3
SIZE (mongodb-src-r3.6.6.tar.gz) = 40391572
3
SIZE (mongodb-src-r3.6.10.tar.gz) = 40562421
(-)files/patch-src-mongo-crypto-sha_block_openssl.cpp (-11 lines)
Lines 1-11 Link Here
1
--- src/mongo/crypto/sha_block_openssl.cpp.orig	2018-07-08 16:42:41.034894000 +0000
2
+++ src/mongo/crypto/sha_block_openssl.cpp	2018-07-08 16:42:58.121846000 +0000
3
@@ -44,7 +44,7 @@
4
 #include <openssl/hmac.h>
5
 #include <openssl/sha.h>
6
 
7
-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
8
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
9
 namespace {
10
 // Copies of OpenSSL after 1.1.0 define new EVP digest routines. We must
11
 // polyfill used definitions to interact with older OpenSSL versions.
(-)files/patch-src-mongo-util-net-ssl_manager.cpp (-11 lines)
Lines 1-11 Link Here
1
--- src/mongo/util/net/ssl_manager.cpp.orig	2018-07-08 16:33:48.347433000 +0000
2
+++ src/mongo/util/net/ssl_manager.cpp	2018-07-08 16:34:49.098494000 +0000
3
@@ -237,7 +237,7 @@
4
 #endif // MONGO_CONFIG_NEEDS_ASN1_ANY_DEFINITIONS
5
 // clang-format on
6
 
7
-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
8
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
9
 // Copies of OpenSSL after 1.1.0 define new functions for interaction with
10
 // X509 structure. We must polyfill used definitions to interact with older
11
 // OpenSSL versions.

Return to bug 234316