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

Collapse All | Expand All

(-)mongodb34.22/Makefile (-2 / +2 lines)
Lines 2-9 Link Here
2
2
3
PORTNAME=	mongodb
3
PORTNAME=	mongodb
4
DISTVERSIONPREFIX=	r
4
DISTVERSIONPREFIX=	r
5
DISTVERSION=	3.4.21
5
DISTVERSION=	3.4.22
6
PORTREVISION=	1
6
#PORTREVISION=	1
7
CATEGORIES=	databases net
7
CATEGORIES=	databases net
8
MASTER_SITES=	https://fastdl.mongodb.org/src/ \
8
MASTER_SITES=	https://fastdl.mongodb.org/src/ \
9
		http://fastdl.mongodb.org/src/ \
9
		http://fastdl.mongodb.org/src/ \
(-)mongodb34.22/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1560876613
1
TIMESTAMP = 1565266677
2
SHA256 (mongodb-src-r3.4.21.tar.gz) = 189afe4fecca1d408ba3a71dc406f6fb889e0f743d7bc15334a17e4f07af28d7
2
SHA256 (mongodb-src-r3.4.22.tar.gz) = de46ef5a6cb2fde1889a1c3dfc7b1d4e1f342614c58e93963bde88954cce3fe6
3
SIZE (mongodb-src-r3.4.21.tar.gz) = 40151763
3
SIZE (mongodb-src-r3.4.22.tar.gz) = 40172095
(-)mongodb34.22/files/patch-boost-1.67 (-24 lines)
Lines 1-24 Link Here
1
In file included from src/third_party/yaml-cpp-0.5.3/src/convert.cpp:3:
2
In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/convert.h:17:
3
In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/impl.h:11:
4
In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/iterator.h:13:
5
src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/iterator.h:48:54: error: no member named 'next' in namespace 'boost'
6
  void increment() { this->base_reference() = boost::next(this->base()); }
7
                                              ~~~~~~~^
8
9
--- src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/iterator.h.orig	2017-09-07 19:28:48 UTC
10
+++ src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/iterator.h
11
@@ -11,7 +11,13 @@
12
 #include "yaml-cpp/node/ptr.h"
13
 #include "yaml-cpp/node/detail/node_iterator.h"
14
 #include <boost/iterator/iterator_adaptor.hpp>
15
+
16
+#include <boost/version.hpp>
17
+#if BOOST_VERSION < 106700
18
 #include <boost/utility.hpp>
19
+#else
20
+#include <boost/next_prior.hpp>
21
+#endif
22
 
23
 namespace YAML {
24
 namespace detail {

Return to bug 239717