Merge lp:~kamalmostafa/ubuntu/lucid/micropolis-activity/fix-505080-ftbfs into lp:ubuntu/lucid/micropolis-activity

Proposed by Kamal Mostafa
Status: Merged
Merged at revision: not available
Proposed branch: lp:~kamalmostafa/ubuntu/lucid/micropolis-activity/fix-505080-ftbfs
Merge into: lp:ubuntu/lucid/micropolis-activity
Diff against target: 66 lines (+34/-1)
4 files modified
debian/changelog (+6/-0)
debian/control (+2/-1)
debian/patches/series (+1/-0)
debian/patches/sparc-siglost.patch (+25/-0)
To merge this branch: bzr merge lp:~kamalmostafa/ubuntu/lucid/micropolis-activity/fix-505080-ftbfs
Reviewer Review Type Date Requested Status
Iulian Udrea Approve
Ubuntu branches Pending
Review via email: mp+17068@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Iulian Udrea (iulian) wrote :

Looks good.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2009-12-12 13:30:40 +0000
+++ debian/changelog 2010-01-09 09:06:18 +0000
@@ -1,3 +1,9 @@
1micropolis-activity (0.0.20071228-4ubuntu1) lucid; urgency=low
2
3 * Avoid SIGLOST==SIGPWR namespace collision on sparc (LP: #505080).
4
5 -- Kamal Mostafa <kamal@whence.com> Sat, 09 Jan 2010 00:41:22 -0800
6
1micropolis-activity (0.0.20071228-4) unstable; urgency=low7micropolis-activity (0.0.20071228-4) unstable; urgency=low
28
3 [ Christoph Egger ]9 [ Christoph Egger ]
410
=== modified file 'debian/control'
--- debian/control 2009-12-12 13:30:40 +0000
+++ debian/control 2010-01-09 09:06:18 +0000
@@ -1,7 +1,8 @@
1Source: micropolis-activity1Source: micropolis-activity
2Section: games2Section: games
3Priority: extra3Priority: extra
4Maintainer: Debian Games Team <pkg-games-devel@lists.alioth.debian.org>4Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
5XSBC-Original-Maintainer: Debian Games Team <pkg-games-devel@lists.alioth.debian.org>
5Uploaders: Miriam Ruiz <little_miry@yahoo.es>,6Uploaders: Miriam Ruiz <little_miry@yahoo.es>,
6 Kenshi Muto <kmuto@debian.org>,7 Kenshi Muto <kmuto@debian.org>,
7 Clint Adams <schizo@debian.org>,8 Clint Adams <schizo@debian.org>,
89
=== modified file 'debian/patches/series'
--- debian/patches/series 2009-12-12 13:30:40 +0000
+++ debian/patches/series 2010-01-09 09:06:18 +0000
@@ -1,3 +1,4 @@
1zerfleddert.20091012.patch1zerfleddert.20091012.patch
2makefile.patch2makefile.patch
3micropolis-path.patch3micropolis-path.patch
4sparc-siglost.patch
45
=== added file 'debian/patches/sparc-siglost.patch'
--- debian/patches/sparc-siglost.patch 1970-01-01 00:00:00 +0000
+++ debian/patches/sparc-siglost.patch 2010-01-09 09:06:18 +0000
@@ -0,0 +1,25 @@
1# Author: Kamal Mostafa <kamal@whence.com>
2# * Avoid SIGLOST==SIGPWR namespace collision on sparc (LP: #505080).
3
4=== modified file 'src/tcl/tclunxst.c'
5--- a/src/tcl/tclunxst.c 2008-12-28 00:18:24 +0000
6+++ b/src/tcl/tclunxst.c 2010-01-09 08:29:56 +0000
7@@ -530,7 +530,7 @@
8 #ifdef SIGKILL
9 case SIGKILL: return "SIGKILL";
10 #endif
11-#if defined(SIGLOST) && (!defined(SIGIOT) || (SIGLOST != SIGIOT))
12+#if defined(SIGLOST) && (!defined(SIGIOT) || (SIGLOST != SIGIOT)) && (!defined(SIGPWR) || (SIGLOST != SIGPWR))
13 case SIGLOST: return "SIGLOST";
14 #endif
15 #ifdef SIGPIPE
16@@ -662,7 +662,7 @@
17 #ifdef SIGKILL
18 case SIGKILL: return "kill signal";
19 #endif
20-#if defined(SIGLOST) && (!defined(SIGIOT) || (SIGLOST != SIGIOT))
21+#if defined(SIGLOST) && (!defined(SIGIOT) || (SIGLOST != SIGIOT)) && (!defined(SIGPWR) || (SIGLOST != SIGPWR))
22 case SIGLOST: return "resource lost";
23 #endif
24 #ifdef SIGPIPE
25

Subscribers

People subscribed via source and target branches

to all changes: