diff options
Diffstat (limited to 'dev-libs/mongo-cxx-driver/files/mongo-cxx-driver-1.1.2-boost-next.patch')
-rw-r--r-- | dev-libs/mongo-cxx-driver/files/mongo-cxx-driver-1.1.2-boost-next.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-libs/mongo-cxx-driver/files/mongo-cxx-driver-1.1.2-boost-next.patch b/dev-libs/mongo-cxx-driver/files/mongo-cxx-driver-1.1.2-boost-next.patch new file mode 100644 index 000000000000..68bdc4dc1a4e --- /dev/null +++ b/dev-libs/mongo-cxx-driver/files/mongo-cxx-driver-1.1.2-boost-next.patch @@ -0,0 +1,21 @@ +Add missing include for boost::next() + +https://bugs.gentoo.org/671422 +--- a/src/mongo/client/command_writer.cpp ++++ b/src/mongo/client/command_writer.cpp +@@ -22,4 +22,6 @@ + #include "mongo/db/namespace_string.h" + ++#include <boost/next_prior.hpp> ++ + namespace mongo { + +--- a/src/mongo/client/wire_protocol_writer.cpp ++++ b/src/mongo/client/wire_protocol_writer.cpp +@@ -22,4 +22,6 @@ + #include "mongo/db/namespace_string.h" + ++#include <boost/next_prior.hpp> ++ + namespace mongo { + |