diff options
Diffstat (limited to 'dev-db/mongodb/files')
3 files changed, 0 insertions, 59 deletions
diff --git a/dev-db/mongodb/files/mongodb-2.4-fix-v8-pythonpath.patch b/dev-db/mongodb/files/mongodb-2.4-fix-v8-pythonpath.patch deleted file mode 100644 index 19efad676839..000000000000 --- a/dev-db/mongodb/files/mongodb-2.4-fix-v8-pythonpath.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/third_party/v8/SConscript 2014-05-26 11:00:37.725508098 +0200 -+++ b/src/third_party/v8/SConscript 2014-05-26 11:01:13.265029083 +0200 -@@ -29,7 +29,7 @@ - import sys - from os.path import join, dirname, abspath - root_dir = dirname(File('SConscript').rfile().abspath) --sys.path.append(join(root_dir, 'tools')) -+sys.path.insert(0, join(root_dir, 'tools')) - import js2c - - Import("env windows linux darwin solaris freebsd debugBuild") diff --git a/dev-db/mongodb/files/mongodb-2.6.10-fix-boost-1.57.patch b/dev-db/mongodb/files/mongodb-2.6.10-fix-boost-1.57.patch deleted file mode 100644 index 5f289c078831..000000000000 --- a/dev-db/mongodb/files/mongodb-2.6.10-fix-boost-1.57.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -up mongodb-src-r2.6.7/src/mongo/shell/linenoise_utf8.h\~ mongodb-src-r2.6.7/src/mongo/shell/linenoise_utf8.h ---- mongodb-src-r2.6.7/src/mongo/shell/linenoise_utf8.h~ 2015-01-13 18:12:06.000000000 +0100 -+++ mongodb-src-r2.6.7/src/mongo/shell/linenoise_utf8.h 2015-01-28 22:22:50.538934558 +0100 -@@ -17,6 +17,7 @@ - - #include <boost/smart_ptr/scoped_array.hpp> - #include <string.h> -+#include <algorithm> - - namespace linenoise_utf8 { - - -Diff finished. Wed Jan 28 22:24:47 2015 diff --git a/dev-db/mongodb/files/mongodb-2.6.2-fix-scons.patch b/dev-db/mongodb/files/mongodb-2.6.2-fix-scons.patch deleted file mode 100644 index 76feba7bfe76..000000000000 --- a/dev-db/mongodb/files/mongodb-2.6.2-fix-scons.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- a/SConstruct 2014-06-16 19:32:46.274507258 +0200 -+++ b/SConstruct 2014-06-16 19:34:04.763586829 +0200 -@@ -813,7 +813,6 @@ - # -Winvalid-pch Warn if a precompiled header (see Precompiled Headers) is found in the search path but can't be used. - env.Append( CCFLAGS=["-fPIC", - "-fno-strict-aliasing", -- "-ggdb", - "-pthread", - "-Wall", - "-Wsign-compare", -@@ -821,13 +820,13 @@ - "-Winvalid-pch"] ) - # env.Append( " -Wconversion" ) TODO: this doesn't really work yet - if linux or darwin: -- env.Append( CCFLAGS=["-pipe"] ) - if not has_option("disable-warnings-as-errors"): - env.Append( CCFLAGS=["-Werror"] ) - - env.Append( CPPDEFINES=["_FILE_OFFSET_BITS=64"] ) -- env.Append( CXXFLAGS=["-Wnon-virtual-dtor", "-Woverloaded-virtual"] ) - env.Append( LINKFLAGS=["-fPIC", "-pthread"] ) -+ env.Append( CXXFLAGS=os.environ['CXXFLAGS'] ) -+ env.Append( LINKFLAGS=os.environ['LDFLAGS'] ) - - # SERVER-9761: Ensure early detection of missing symbols in dependent libraries at program - # startup. -@@ -844,7 +843,7 @@ - if not darwin: - env.Append( LINKFLAGS=["-rdynamic"] ) - -- env.Append( LIBS=[] ) -+ env.Append( LIBS=['pcre', 'pcrecpp', 'snappy', 'yaml-cpp'] ) - - #make scons colorgcc friendly - for key in ('HOME', 'TERM'): |