dante: fix sparc compile issue
authorWaldemar Brodkorb <wbx@openadk.org>
Sun, 10 Jul 2016 09:32:13 +0000 (11:32 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sun, 10 Jul 2016 13:17:36 +0000 (15:17 +0200)
Fixes following autobuild failure:
http://autobuild.buildroot.net/results/536d95a46ef9527c6ed38b397f7e1b33f4b7b5fe/

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/dante/0001-fix-sparc-compile.patch [new file with mode: 0644]

diff --git a/package/dante/0001-fix-sparc-compile.patch b/package/dante/0001-fix-sparc-compile.patch
new file mode 100644 (file)
index 0000000..a23e2e2
--- /dev/null
@@ -0,0 +1,24 @@
+Signal handling for sparc is broken, fix it.
+
+Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
+
+--- dante-1.4.1.orig/lib/tostring.c    2014-08-21 18:21:50.000000000 +0200
++++ dante-1.4.1/lib/tostring.c 2016-07-10 10:08:39.785662622 +0200
+@@ -1526,7 +1526,7 @@ signal2string(sig)
+          return "SIGKILL";
+ #endif /* SIGKILL */
+-#if (defined SIGLOST) && (!defined SIGABRT || SIGLOST != SIGABRT)
++#if (defined SIGLOST) && (!defined SIGABRT || SIGLOST != SIGABRT || SIGLOST != SIGPWR)
+       case SIGLOST:
+          return "SIGLOST";
+ #endif /* SIGLOST */
+@@ -1551,7 +1551,7 @@ signal2string(sig)
+          return "SIGPROF";
+ #endif /* SIGPROF */
+-#ifdef SIGPWR
++#if (defined SIGPWR) && SIGPWR != SIGLOST
+       case SIGPWR:
+          return "SIGPWR";
+ #endif /* SIGPWR */