summaryrefslogtreecommitdiff
path: root/dev-db/mongodb/files/mongodb-2.4.11-fix-scons.patch
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2015-12-31 15:07:02 +0100
committerUltrabug <ultrabug@gentoo.org>2016-01-03 13:26:50 +0100
commit28a3f51f40f5252ce059ef182b3dd4cf516cfd77 (patch)
tree6888cb8e40f6da242b487bd3bfbee4c4abbc5b5a /dev-db/mongodb/files/mongodb-2.4.11-fix-scons.patch
parent2ed174f375c9f52ee5e78e2836ef346f792eb107 (diff)
downloadgentoo-28a3f51f40f5252ce059ef182b3dd4cf516cfd77.tar.gz
gentoo-28a3f51f40f5252ce059ef182b3dd4cf516cfd77.tar.bz2
gentoo-28a3f51f40f5252ce059ef182b3dd4cf516cfd77.zip
dev-db/mongodb: drop 2.4 series after bumping mongochem deps
Package-Manager: portage-2.2.25
Diffstat (limited to 'dev-db/mongodb/files/mongodb-2.4.11-fix-scons.patch')
-rw-r--r--dev-db/mongodb/files/mongodb-2.4.11-fix-scons.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-db/mongodb/files/mongodb-2.4.11-fix-scons.patch b/dev-db/mongodb/files/mongodb-2.4.11-fix-scons.patch
deleted file mode 100644
index 5050fe7daa35..000000000000
--- a/dev-db/mongodb/files/mongodb-2.4.11-fix-scons.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- b/SConstruct 2014-09-01 19:12:24.289585592 +0200
-+++ a/SConstruct 2014-09-01 19:14:12.550312261 +0200
-@@ -704,7 +704,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",
-@@ -719,9 +718,10 @@
- env.Append( CCFLAGS=["-fno-builtin-memcmp"] ) # glibc's memcmp is faster than gcc's
-
- env.Append( CPPDEFINES=["_FILE_OFFSET_BITS=64"] )
-- env.Append( CXXFLAGS=["-Wnon-virtual-dtor", "-Woverloaded-virtual"] )
-+ env.Append( CXXFLAGS=os.environ['CXXFLAGS'] )
-+ env.Append( LINKFLAGS=os.environ['LDFLAGS'] )
- env.Append( LINKFLAGS=["-fPIC", "-pthread", "-rdynamic"] )
-- env.Append( LIBS=[] )
-+ env.Append( LIBS=['pcre', 'pcrecpp', 'snappy'] )
-
- #make scons colorgcc friendly
- for key in ('HOME', 'TERM'):