diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2018-12-01 12:59:21 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2018-12-01 12:59:39 +0000 |
commit | a49d1c1409f75c4af9bf5f539bc06c1c7950e03a (patch) | |
tree | 54223d1f13fb0b8300957b2f66a484f1df37bdc9 /dev-libs/mongo-cxx-driver | |
parent | virtual/pam: EAPI bump (diff) | |
download | gentoo-a49d1c1409f75c4af9bf5f539bc06c1c7950e03a.tar.gz gentoo-a49d1c1409f75c4af9bf5f539bc06c1c7950e03a.tar.bz2 gentoo-a49d1c1409f75c4af9bf5f539bc06c1c7950e03a.zip |
dev-libs/mongo-cxx-driver: tweak for boost-167, bug #671422
Reported-by: Toralf Förster
Closes: https://bugs.gentoo.org/671422
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-libs/mongo-cxx-driver')
-rw-r--r-- | dev-libs/mongo-cxx-driver/files/mongo-cxx-driver-1.1.2-boost-next.patch | 21 | ||||
-rw-r--r-- | dev-libs/mongo-cxx-driver/mongo-cxx-driver-1.1.2-r1.ebuild | 3 |
2 files changed, 23 insertions, 1 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 { + diff --git a/dev-libs/mongo-cxx-driver/mongo-cxx-driver-1.1.2-r1.ebuild b/dev-libs/mongo-cxx-driver/mongo-cxx-driver-1.1.2-r1.ebuild index 4b2e018de535..2dad30753129 100644 --- a/dev-libs/mongo-cxx-driver/mongo-cxx-driver-1.1.2-r1.ebuild +++ b/dev-libs/mongo-cxx-driver/mongo-cxx-driver-1.1.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -33,6 +33,7 @@ DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${PN}-1.1.0-fix-scons.patch "${FILESDIR}"/${PN}-1.1.2-boost-ref.patch + "${FILESDIR}"/${PN}-1.1.2-boost-next.patch ) S="${WORKDIR}/${PN}-legacy-${PV}" |