summaryrefslogtreecommitdiff
path: root/dev-db/mongodb/files/mongodb-3.0.14-fix-scons.patch
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2018-11-05 13:28:51 +0100
committerUltrabug <ultrabug@gentoo.org>2018-11-05 13:28:51 +0100
commit2e37e0428f4f0d6939245dfcf020952efa26797c (patch)
tree697bcb08f20fe7e409189b1c81dc94c00495a3c1 /dev-db/mongodb/files/mongodb-3.0.14-fix-scons.patch
parent58245ef9cd1b96d9ce0383217b7b0ae3ea140365 (diff)
downloadgentoo-2e37e0428f4f0d6939245dfcf020952efa26797c.tar.gz
gentoo-2e37e0428f4f0d6939245dfcf020952efa26797c.tar.bz2
gentoo-2e37e0428f4f0d6939245dfcf020952efa26797c.zip
dev-db/mongodb: obsolete ebuilds and files clean up
Signed-off-by: Alexys Jacob <ultrabug@gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11
Diffstat (limited to 'dev-db/mongodb/files/mongodb-3.0.14-fix-scons.patch')
-rw-r--r--dev-db/mongodb/files/mongodb-3.0.14-fix-scons.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-db/mongodb/files/mongodb-3.0.14-fix-scons.patch b/dev-db/mongodb/files/mongodb-3.0.14-fix-scons.patch
deleted file mode 100644
index 1db5d7695c72..000000000000
--- a/dev-db/mongodb/files/mongodb-3.0.14-fix-scons.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/SConstruct b/SConstruct
---- a/SConstruct
-+++ b/SConstruct
-@@ -1008,7 +1008,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",
-@@ -1016,13 +1015,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.
-@@ -1039,7 +1038,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'):