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>2015-12-31 15:07:02 +0100
commitb7d145c08adf1bb3cb8fa5621760fb2cc2e25ec4 (patch)
tree9ac78cb51f2c6b22fc1a4a09902ad77afdec0445 /dev-db/mongodb/files/mongodb-2.4.11-fix-scons.patch
parentd4d0100df91df00a9886f514db5f588780bdf187 (diff)
downloadgentoo-b7d145c08adf1bb3cb8fa5621760fb2cc2e25ec4.tar.gz
gentoo-b7d145c08adf1bb3cb8fa5621760fb2cc2e25ec4.tar.bz2
gentoo-b7d145c08adf1bb3cb8fa5621760fb2cc2e25ec4.zip
dev-db/mongodb: drop 2.4 series
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'):