Hello community,

here is the log from the commit of package alsa-utils for openSUSE:Factory 
checked in at 2013-09-09 09:26:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/alsa-utils (Old)
 and      /work/SRC/openSUSE:Factory/.alsa-utils.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "alsa-utils"

Changes:
--------
--- /work/SRC/openSUSE:Factory/alsa-utils/alsa-utils.changes    2013-07-20 
09:03:07.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.alsa-utils.new/alsa-utils.changes       
2013-09-09 09:26:37.000000000 +0200
@@ -1,0 +2,6 @@
+Fri Sep  6 10:02:34 CEST 2013 - [email protected]
+
+- Upstream fix:
+  0002-alsaloop-fix-wrong-alias-for-signal.h.patch
+
+-------------------------------------------------------------------

New:
----
  0002-alsaloop-fix-wrong-alias-for-signal.h.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ alsa-utils.spec ++++++
--- /var/tmp/diff_new_pack.UJEOtp/_old  2013-09-09 09:26:38.000000000 +0200
+++ /var/tmp/diff_new_pack.UJEOtp/_new  2013-09-09 09:26:38.000000000 +0200
@@ -59,6 +59,7 @@
 # Patch:          alsa-utils-git-fixes.diff
 # upstream fix patches
 Patch1:         0001-alsactl-alsa-state.service-fix-typo-rkill-kill.patch
+Patch2:         0002-alsaloop-fix-wrong-alias-for-signal.h.patch
 #
 Patch99:        alsa-utils-gettext-version-removal.diff
 Url:            http://www.alsa-project.org/
@@ -75,6 +76,7 @@
 # rm -f po/Makefile* po/*.gmo po/*.pot po/*.header po/stamp-*
 # patch -p1
 %patch1 -p1
+%patch2 -p1
 #
 %if %suse_version < 1020
 %patch99 -p1

++++++ 0002-alsaloop-fix-wrong-alias-for-signal.h.patch ++++++
>From 8f57464190eb683d9517d8cfbd2cefb6223c6f1d Mon Sep 17 00:00:00 2001
From: Jaroslav Kysela <[email protected]>
Date: Tue, 23 Jul 2013 14:57:05 +0200
Subject: [PATCH] alsaloop: fix wrong alias for signal.h

in POSIX, there is no <sys/signal.h>.

it's merely a legacy alias used by glibc, and the header does nothing
else than including <signal.h>.

so let's do the right thing and use the right name, which works everywhere.

Signed-off-by: John Spencer <[email protected]>
Signed-off-by: Jaroslav Kysela <[email protected]>
---
 alsaloop/alsaloop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/alsaloop/alsaloop.c b/alsaloop/alsaloop.c
index e1a36d2..20150dd 100644
--- a/alsaloop/alsaloop.c
+++ b/alsaloop/alsaloop.c
@@ -31,7 +31,7 @@
 #include <math.h>
 #include <pthread.h>
 #include <syslog.h>
-#include <sys/signal.h>
+#include <signal.h>
 #include "alsaloop.h"
 
 struct loopback_thread {
-- 
1.8.4

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to