alsa-utils: alsamixer.c is patched to use strsignal not sys_siglist
authorJohn Bowler <jbowler@nslu2-linux.org>
Tue, 6 Sep 2005 19:58:08 +0000 (19:58 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 6 Sep 2005 19:58:08 +0000 (19:58 +0000)
This allows alsa-utils to build on uclibc

packages/alsa/alsa-utils_1.0.8.bb
packages/alsa/files/.mtn2git_empty [new file with mode: 0644]
packages/alsa/files/alsa-utils-sys-siglist.patch [new file with mode: 0644]

index ca9a52e..8e8297c 100644 (file)
@@ -3,9 +3,10 @@ MAINTAINER = "Lorn Potter <lpotter@trolltech.com>"
 SECTION = "console/utils"
 LICENSE = "GPL"
 DEPENDS = "alsa-lib ncurses"
-PR = "r2"
+PR = "r3"
 
 SRC_URI = "ftp://ftp.alsa-project.org/pub/utils/alsa-utils-${PV}.tar.bz2"
+SRC_URI += "file://alsa-utils-sys-siglist.patch;patch=108"
 
 inherit autotools
 
diff --git a/packages/alsa/files/.mtn2git_empty b/packages/alsa/files/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/alsa/files/alsa-utils-sys-siglist.patch b/packages/alsa/files/alsa-utils-sys-siglist.patch
new file mode 100644 (file)
index 0000000..8c499e8
--- /dev/null
@@ -0,0 +1,15 @@
+sys_siglist is not supported by default on uclibc and is, in general,
+a bad thing for the same reasons as sys_errlist is a bad thing.  GNU
+supports strsignal in the manner of strerror
+
+--- alsa-utils-1.0.8/alsamixer/alsamixer.c.orig        2005-09-06 12:44:41.415219126 -0700
++++ alsa-utils-1.0.8/alsamixer/alsamixer.c     2005-09-06 12:44:43.407344482 -0700
+@@ -2188,7 +2188,7 @@
+ mixer_signal_handler (int signal)
+ {
+   if (signal != SIGSEGV)
+-    mixer_abort (ERR_SIGNAL, sys_siglist[signal], 0);
++    mixer_abort (ERR_SIGNAL, strsignal(signal), 0);
+   else
+     {
+       fprintf (stderr, "\nSegmentation fault.\n");