summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-03-02 12:53:46 +0100
committerAaron Bauman <bman@gentoo.org>2019-03-03 22:11:42 -0500
commitaa98e596a87ca9ff7fd46d39e748b06956c9f777 (patch)
tree172d42132d2612b4bb8737ce740f4836ce098563 /dev-db/mongodb
parentmedia-video/handbrake: remove unused patch (diff)
downloadgentoo-aa98e596a87ca9ff7fd46d39e748b06956c9f777.tar.gz
gentoo-aa98e596a87ca9ff7fd46d39e748b06956c9f777.tar.bz2
gentoo-aa98e596a87ca9ff7fd46d39e748b06956c9f777.zip
dev-db/mongodb: remove unused patch
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11210 Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-db/mongodb')
-rw-r--r--dev-db/mongodb/files/mongodb-3.2.10-boost-1.62.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/dev-db/mongodb/files/mongodb-3.2.10-boost-1.62.patch b/dev-db/mongodb/files/mongodb-3.2.10-boost-1.62.patch
deleted file mode 100644
index 30a3bdff45f8..000000000000
--- a/dev-db/mongodb/files/mongodb-3.2.10-boost-1.62.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Derived from http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/databases/mongodb/patches/patch-src_mongo_db_fts_unicode_string.cpp v1.1
-
-* Fix build with boost 1.62.0
-
---- a/src/mongo/db/fts/unicode/string.cpp 2016-09-26 12:10:04.000000000 +0000
-+++ b/src/mongo/db/fts/unicode/string.cpp
-@@ -274,7 +274,7 @@ bool String::substrMatch(const std::stri
-
- // Case sensitive and diacritic sensitive.
- return boost::algorithm::boyer_moore_search(
-- haystack.begin(), haystack.end(), needle.begin(), needle.end()) != haystack.end();
-+ haystack.begin(), haystack.end(), needle.begin(), needle.end()) != std::make_pair(haystack.end(), haystack.end());
- }
-
- } // namespace unicode