Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/busybox/files: busybox-1.7.4-signal-hack.patch
Date: Tue, 04 Dec 2007 06:42:55
Message-Id: E1IzRUX-0005Eq-R8@stork.gentoo.org
1 vapier 07/12/04 06:42:49
2
3 Added: busybox-1.7.4-signal-hack.patch
4 Log:
5 Add a quick hack for building on hppa while we sort things out upstream #201114.
6 (Portage version: 2.1.4_rc4)
7
8 Revision Changes Path
9 1.1 sys-apps/busybox/files/busybox-1.7.4-signal-hack.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/files/busybox-1.7.4-signal-hack.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/files/busybox-1.7.4-signal-hack.patch?rev=1.1&content-type=text/plain
13
14 Index: busybox-1.7.4-signal-hack.patch
15 ===================================================================
16 workaround while we get it fixed upstream
17
18 http://bugs.gentoo.org/201114
19
20 --- libbb/u_signal_names.c
21 +++ libbb/u_signal_names.c
22 @@ -66,7 +66,7 @@
23 #ifdef SIGTERM
24 [SIGTERM ] = "TERM",
25 #endif
26 -#ifdef SIGSTKFLT
27 +#if defined(SIGSTKFLT) && SIGSTKFLT < 32
28 [SIGSTKFLT] = "STKFLT",
29 #endif
30 #ifdef SIGCHLD
31 @@ -90,10 +90,10 @
32 #ifdef SIGURG
33 [SIGURG ] = "URG",
34 #endif
35 -#ifdef SIGXCPU
36 +#if defined(SIGXCPU) && SIGXCPU < 32
37 [SIGXCPU ] = "XCPU",
38 #endif
39 -#ifdef SIGXFSZ
40 +#if defined(SIGXFSZ) && SIGXFSZ < 32
41 [SIGXFSZ ] = "XFSZ",
42 #endif
43 #ifdef SIGVTALRM
44
45
46
47 --
48 gentoo-commits@g.o mailing list