summaryrefslogtreecommitdiff
path: root/databases/mongodb34/files/patch-boost-1.67
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2019-10-10 06:33:03 +0000
committerKurt Jaeger <pi@FreeBSD.org>2019-10-10 06:33:03 +0000
commit827a01cc4fe0ee383a09db6e6752171ecefe5ba6 (patch)
treeb60db73b4ff6e09839a950a63af9eff97fb3dd5c /databases/mongodb34/files/patch-boost-1.67
parentlang/rust-nightly: update to 1.40.0.20191010 (diff)
databases/mongodb34: upgrade 3.4.21 -> 3.4.22
PR: 239717 Submitted by: Ronald Klop <ronald-lists@klop.ws> (maintainer) MFH: 2019Q4 Relnotes: https://docs.mongodb.com/manual/release-notes/3.4/#aug-6-2019 Security: CVE-2019-2386, CVE-2019-2389, CVE-2019-2390
Notes
Notes: svn path=/head/; revision=514207
Diffstat (limited to 'databases/mongodb34/files/patch-boost-1.67')
-rw-r--r--databases/mongodb34/files/patch-boost-1.6724
1 files changed, 0 insertions, 24 deletions
diff --git a/databases/mongodb34/files/patch-boost-1.67 b/databases/mongodb34/files/patch-boost-1.67
deleted file mode 100644
index a8ccacbf3499..000000000000
--- a/databases/mongodb34/files/patch-boost-1.67
+++ /dev/null
@@ -1,24 +0,0 @@
-In file included from src/third_party/yaml-cpp-0.5.3/src/convert.cpp:3:
-In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/convert.h:17:
-In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/impl.h:11:
-In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/iterator.h:13:
-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'
- void increment() { this->base_reference() = boost::next(this->base()); }
- ~~~~~~~^
-
---- src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/iterator.h.orig 2017-09-07 19:28:48 UTC
-+++ src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/iterator.h
-@@ -11,7 +11,13 @@
- #include "yaml-cpp/node/ptr.h"
- #include "yaml-cpp/node/detail/node_iterator.h"
- #include <boost/iterator/iterator_adaptor.hpp>
-+
-+#include <boost/version.hpp>
-+#if BOOST_VERSION < 106700
- #include <boost/utility.hpp>
-+#else
-+#include <boost/next_prior.hpp>
-+#endif
-
- namespace YAML {
- namespace detail {