Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/google-perftools/files: gperftools-2.0+glibc-2.16.patch
Date: Mon, 09 Jul 2012 10:49:22
Message-Id: 20120709104907.01E7820065@flycatcher.gentoo.org
1 flameeyes 12/07/09 10:49:06
2
3 Added: gperftools-2.0+glibc-2.16.patch
4 Log:
5 Remove old; add a patch to build with glibc 2.16 (bug #424992); make sure to disable frame pointer omission as upstream seems to be concerned about it.
6
7 (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-util/google-perftools/files/gperftools-2.0+glibc-2.16.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/google-perftools/files/gperftools-2.0+glibc-2.16.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/google-perftools/files/gperftools-2.0+glibc-2.16.patch?rev=1.1&content-type=text/plain
14
15 Index: gperftools-2.0+glibc-2.16.patch
16 ===================================================================
17 Index: gperftools-2.0/src/base/linuxthreads.cc
18 ===================================================================
19 --- gperftools-2.0.orig/src/base/linuxthreads.cc
20 +++ gperftools-2.0/src/base/linuxthreads.cc
21 @@ -193,7 +193,7 @@ static volatile int *sig_pids, sig_num_t
22 /* Signal handler to help us recover from dying while we are attached to
23 * other threads.
24 */
25 -static void SignalHandler(int signum, siginfo_t *si, void *data) {
26 +static void SignalHandler(int signum, struct siginfo *si, void *data) {
27 if (sig_pids != NULL) {
28 if (signum == SIGABRT) {
29 while (sig_num_threads-- > 0) {