aboutsummaryrefslogtreecommitdiff
path: root/databases/mongodb36/files
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2019-10-11 19:31:10 +0000
committerKurt Jaeger <pi@FreeBSD.org>2019-10-11 19:31:10 +0000
commit4055b6dac22bc48199d0525f13d4ad81c67bd7a5 (patch)
tree4696bf866e1b7f28c62094cd59a99eb00fb840bc /databases/mongodb36/files
parentc0c6aed8759c684b19c0b2b67628eaf1fcbf7e7a (diff)
Notes
Diffstat (limited to 'databases/mongodb36/files')
-rw-r--r--databases/mongodb36/files/patch-boost-1.6725
-rw-r--r--databases/mongodb36/files/patch-src_mongo_util_time__support.cpp11
2 files changed, 0 insertions, 36 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 {
diff --git a/databases/mongodb36/files/patch-src_mongo_util_time__support.cpp b/databases/mongodb36/files/patch-src_mongo_util_time__support.cpp
deleted file mode 100644
index 503d5074a6e0..000000000000
--- a/databases/mongodb36/files/patch-src_mongo_util_time__support.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/mongo/util/time_support.cpp.orig 2018-04-19 11:21:07 UTC
-+++ src/mongo/util/time_support.cpp
-@@ -933,7 +933,7 @@ private:
- // Find minimum timer resolution of OS
- Nanoseconds getMinimumTimerResolution() {
- Nanoseconds minTimerResolution;
--#if defined(__linux__)
-+#if defined(__linux__) || defined(__FreeBSD__)
- struct timespec tp;
- clock_getres(CLOCK_REALTIME, &tp);
- minTimerResolution = Nanoseconds{tp.tv_nsec};