From 37b3c9194087f7cf6676b74588260ba05f20d784 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Thu, 20 Oct 2016 18:14:08 +0200 Subject: [PATCH] mongodb: fix build (boost-1.62/NetBSD patch) --- srcpkgs/mongodb/patches/boost162.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 srcpkgs/mongodb/patches/boost162.patch diff --git a/srcpkgs/mongodb/patches/boost162.patch b/srcpkgs/mongodb/patches/boost162.patch new file mode 100644 index 00000000000..076c8ba5090 --- /dev/null +++ b/srcpkgs/mongodb/patches/boost162.patch @@ -0,0 +1,15 @@ +$NetBSD: patch-src_mongo_db_fts_unicode_string.cpp,v 1.1 2016/10/10 13:15:40 ryoon Exp $ + +* Fix build with boost 1.62.0 + +--- src/mongo/db/fts/unicode/string.cpp.orig 2016-09-26 12:10:04.000000000 +0000 ++++ 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