Gentoo Archives: gentoo-commits

From: "Alexys Jacob (ultrabug)" <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/mongodb/files: mongodb-2.0-fix-scons.patch
Date: Fri, 18 Nov 2011 08:32:59
Message-Id: 20111118083246.CF8682004B@flycatcher.gentoo.org
1 ultrabug 11/11/18 08:32:46
2
3 Modified: mongodb-2.0-fix-scons.patch
4 Log:
5 Version bump, drop old
6
7 (Portage version: 2.1.10.34/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-db/mongodb/files/mongodb-2.0-fix-scons.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb-2.0-fix-scons.patch?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb-2.0-fix-scons.patch?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb-2.0-fix-scons.patch?r1=1.1&r2=1.2
15
16 Index: mongodb-2.0-fix-scons.patch
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/mongodb/files/mongodb-2.0-fix-scons.patch,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- mongodb-2.0-fix-scons.patch 16 Nov 2011 09:44:09 -0000 1.1
23 +++ mongodb-2.0-fix-scons.patch 18 Nov 2011 08:32:46 -0000 1.2
24 @@ -1,6 +1,6 @@
25 ---- a/SConstruct 2011-11-14 15:05:46.000000000 +0100
26 -+++ b/SConstruct 2011-11-15 21:12:23.707935731 +0100
27 -@@ -689,15 +689,16 @@
28 +--- a/SConstruct 2011-11-16 22:11:39.000000000 +0100
29 ++++ b/SConstruct 2011-11-17 16:30:16.144117550 +0100
30 +@@ -688,7 +688,7 @@
31 env["CXX"] = "distcc " + env["CXX"]
32
33 # -Winvalid-pch Warn if a precompiled header (see Precompiled Headers) is found in the search path but can't be used.
34 @@ -8,8 +8,8 @@
35 + env.Append( CPPFLAGS="-fPIC -fno-strict-aliasing -pthread -Wall -Wsign-compare -Wno-unknown-pragmas -Winvalid-pch" )
36 # env.Append( " -Wconversion" ) TODO: this doesn't really work yet
37 if linux:
38 -- env.Append( CPPFLAGS=" -Werror -pipe " )
39 - if not has_option('clang'):
40 + env.Append( CPPFLAGS=" -Werror " )
41 +@@ -696,7 +696,9 @@
42 env.Append( CPPFLAGS=" -fno-builtin-memcmp " ) # glibc's memcmp is faster than gcc's
43
44 env.Append( CPPDEFINES="_FILE_OFFSET_BITS=64" )
45 @@ -19,7 +19,7 @@
46 env.Append( LINKFLAGS=" -fPIC -pthread -rdynamic" )
47 env.Append( LIBS=[] )
48
49 -@@ -707,12 +708,13 @@
50 +@@ -706,12 +708,13 @@
51
52 if linux and has_option( "sharedclient" ):
53 env.Append( LINKFLAGS=" -Wl,--as-needed -Wl,-zdefs " )