Gentoo Archives: gentoo-commits

From: "Andrew Gaffney (agaffney)" <agaffney@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] genkernel r659 - in trunk: . patches/busybox/1.7.4
Date: Sat, 29 Mar 2008 19:28:01
Message-Id: E1Jfgic-0006zV-II@stork.gentoo.org
1 Author: agaffney
2 Date: 2008-03-29 19:27:57 +0000 (Sat, 29 Mar 2008)
3 New Revision: 659
4
5 Added:
6 trunk/patches/busybox/1.7.4/busybox-1.7.4-signal-hack.patch
7 Modified:
8 trunk/ChangeLog
9 Log:
10 Add patch from ebuild in-tree to fix build issue with signals on hppa
11
12 Modified: trunk/ChangeLog
13 ===================================================================
14 --- trunk/ChangeLog 2008-03-14 16:19:20 UTC (rev 658)
15 +++ trunk/ChangeLog 2008-03-29 19:27:57 UTC (rev 659)
16 @@ -2,6 +2,10 @@
17 # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2
18 # $Header: $
19
20 + 29 Mar 2008; Andrew Gaffney <agaffney@g.o>
21 + +patches/busybox/1.7.4/busybox-1.7.4-signal-hack.patch:
22 + Add patch from ebuild in-tree to fix build issue with signals on hppa
23 +
24 14 Mar 2008; Andrew Gaffney <agaffney@g.o> gen_cmdline.sh,
25 gen_determineargs.sh:
26 Get rid of --initramfs option as it doesn't do anything anymore
27
28 Added: trunk/patches/busybox/1.7.4/busybox-1.7.4-signal-hack.patch
29 ===================================================================
30 --- trunk/patches/busybox/1.7.4/busybox-1.7.4-signal-hack.patch (rev 0)
31 +++ trunk/patches/busybox/1.7.4/busybox-1.7.4-signal-hack.patch 2008-03-29 19:27:57 UTC (rev 659)
32 @@ -0,0 +1,28 @@
33 +workaround while we get it fixed upstream
34 +
35 +http://bugs.gentoo.org/201114
36 +
37 +--- libbb/u_signal_names.c
38 ++++ libbb/u_signal_names.c
39 +@@ -66,7 +66,7 @@
40 + #ifdef SIGTERM
41 + [SIGTERM ] = "TERM",
42 + #endif
43 +-#ifdef SIGSTKFLT
44 ++#if defined(SIGSTKFLT) && SIGSTKFLT < 32
45 + [SIGSTKFLT] = "STKFLT",
46 + #endif
47 + #ifdef SIGCHLD
48 +@@ -90,10 +90,10 @
49 + #ifdef SIGURG
50 + [SIGURG ] = "URG",
51 + #endif
52 +-#ifdef SIGXCPU
53 ++#if defined(SIGXCPU) && SIGXCPU < 32
54 + [SIGXCPU ] = "XCPU",
55 + #endif
56 +-#ifdef SIGXFSZ
57 ++#if defined(SIGXFSZ) && SIGXFSZ < 32
58 + [SIGXFSZ ] = "XFSZ",
59 + #endif
60 + #ifdef SIGVTALRM
61
62
63 Property changes on: trunk/patches/busybox/1.7.4/busybox-1.7.4-signal-hack.patch
64 ___________________________________________________________________
65 Name: svn:keywords
66 + Id
67
68 --
69 gentoo-commits@l.g.o mailing list