Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/xmlrpc-c/files: xmlrpc-c-1.32.05-Wimplicit.patch xmlrpc-c-1.28.00-advanced-test.patch xmlrpc-c-1.06.27-gcc43-test-fix.patch xmlrpc-c-1.06.02-threadupdatestatus.patch xmlrpc-c-1.06.02-strsol.patch xmlrpc-c-1.06.09-asneeded.patch xmlrpc-c-1.06.27-abyss-header-fixup.patch xmlrpc-c-gcc43.patch xmlrpc-c-1.06.27-curl-headers.patch xmlrpc-c-1.06.27-curl-easy-setopt.patch xmlrpc-c-1.06.09-strsol.patch xmlrpc-c-1.05-pic.patch xmlrpc-c-1.06.03-mustbuildclient.patch xmlrpc-c-1.06.09+curl-7.18.patch
Date: Wed, 27 Feb 2013 06:19:27
Message-Id: 20130227061923.D17262171E@flycatcher.gentoo.org
1 jer 13/02/27 06:19:23
2
3 Added: xmlrpc-c-1.32.05-Wimplicit.patch
4 Removed: xmlrpc-c-1.28.00-advanced-test.patch
5 xmlrpc-c-1.06.27-gcc43-test-fix.patch
6 xmlrpc-c-1.06.02-threadupdatestatus.patch
7 xmlrpc-c-1.06.02-strsol.patch
8 xmlrpc-c-1.06.09-asneeded.patch
9 xmlrpc-c-1.06.27-abyss-header-fixup.patch
10 xmlrpc-c-gcc43.patch
11 xmlrpc-c-1.06.27-curl-headers.patch
12 xmlrpc-c-1.06.27-curl-easy-setopt.patch
13 xmlrpc-c-1.06.09-strsol.patch
14 xmlrpc-c-1.05-pic.patch
15 xmlrpc-c-1.06.03-mustbuildclient.patch
16 xmlrpc-c-1.06.09+curl-7.18.patch
17 Log:
18 Enable -Wimplicit only for C, not for C++.
19
20 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key A792A613)
21
22 Revision Changes Path
23 1.1 dev-libs/xmlrpc-c/files/xmlrpc-c-1.32.05-Wimplicit.patch
24
25 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xmlrpc-c/files/xmlrpc-c-1.32.05-Wimplicit.patch?rev=1.1&view=markup
26 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xmlrpc-c/files/xmlrpc-c-1.32.05-Wimplicit.patch?rev=1.1&content-type=text/plain
27
28 Index: xmlrpc-c-1.32.05-Wimplicit.patch
29 ===================================================================
30 --- a/common.mk
31 +++ b/common.mk
32 @@ -17,7 +17,7 @@
33 # fully made.
34 .DELETE_ON_ERROR:
35
36 -GCC_WARNINGS = -Wall -W -Wno-uninitialized -Wundef -Wimplicit \
37 +GCC_WARNINGS = -Wall -W -Wno-uninitialized -Wundef \
38 -Wno-unknown-pragmas
39 # We need -Wwrite-strings after we fix all the missing consts
40 #
41 @@ -27,7 +27,7 @@
42 # on -Wuninitialized for all the others.
43
44 GCC_C_WARNINGS = $(GCC_WARNINGS) \
45 - -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes
46 + -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wimplicit
47
48 GCC_CXX_WARNINGS = $(GCC_WARNINGS) -Wsynth