diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2019-10-11 19:31:10 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2019-10-11 19:31:10 +0000 |
commit | 4055b6dac22bc48199d0525f13d4ad81c67bd7a5 (patch) | |
tree | 4696bf866e1b7f28c62094cd59a99eb00fb840bc /databases/mongodb36/files/patch-boost-1.67 | |
parent | databases/mongodb34: upgrade 3.4.22 -> 3.4.23 (diff) |
databases/mongodb36: upgrade 3.6.13 -> 3.6.14 with security fixes
PR: 240126
Submitted by: Ronald Klop <ronald-lists@klop.ws>
Approved by: dev@dudu.ro (maintainer)
MFH: 2019Q4
Relnotes: https://docs.mongodb.com/manual/release-notes/3.6/#aug-26-2019
Security: CVE-2019-2386, CVE-2019-2389, CVE-2019-2390
Notes
Notes:
svn path=/head/; revision=514295
Diffstat (limited to 'databases/mongodb36/files/patch-boost-1.67')
-rw-r--r-- | databases/mongodb36/files/patch-boost-1.67 | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/databases/mongodb36/files/patch-boost-1.67 b/databases/mongodb36/files/patch-boost-1.67 deleted file mode 100644 index fa8118f5c08c..000000000000 --- a/databases/mongodb36/files/patch-boost-1.67 +++ /dev/null @@ -1,25 +0,0 @@ -In file included from src/third_party/yaml-cpp-0.5.3/src/nodebuilder.cpp:5: -In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/node.h:14: -In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/node_ref.h:13: -In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/node_data.h:20: -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 2018-02-16 21:50:58 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 { |