Gentoo Archives: gentoo-commits

From: "Alex Alexander (wired)" <wired@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/chromium/files: chromium-6.0.495.0-gcc-4.5.patch
Date: Thu, 19 Aug 2010 20:03:24
Message-Id: 20100819200318.20D202004E@flycatcher.gentoo.org
1 wired 10/08/19 20:03:18
2
3 Added: chromium-6.0.495.0-gcc-4.5.patch
4 Log:
5 fixed gcc-4.5 compilation, thanks to Sergey Dulko for patch. bug #333345
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 www-client/chromium/files/chromium-6.0.495.0-gcc-4.5.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/files/chromium-6.0.495.0-gcc-4.5.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/files/chromium-6.0.495.0-gcc-4.5.patch?rev=1.1&content-type=text/plain
13
14 Index: chromium-6.0.495.0-gcc-4.5.patch
15 ===================================================================
16 diff -Naur chromium-6.0.495.0_old/ipc/ipc_message_utils.h chromium-6.0.495.0/ipc/ipc_message_utils.h
17 --- chromium-6.0.495.0_old/ipc/ipc_message_utils.h 2010-08-15 11:41:25.000000000 +0300
18 +++ chromium-6.0.495.0/ipc/ipc_message_utils.h 2010-08-18 21:38:48.000000000 +0300
19 @@ -27,7 +27,7 @@
20 // ipc_message_utils_impl.h in those files) and exported, instead of expanded
21 // at every call site. Special note: GCC happily accepts the attribute before
22 // the method declaration, but only acts on it if it is after.
23 -#define IPC_MSG_NOINLINE __attribute__((noinline));
24 +#define IPC_MSG_NOINLINE __attribute__((noinline, noclone));
25 #elif defined(COMPILER_MSVC)
26 // MSVC++ doesn't do this.
27 #define IPC_MSG_NOINLINE