rpms/nas/devel nasd_245712.patch, NONE, 1.1 nas.spec, 1.15, 1.16 nasd.init, 1.2, 1.3

Frank Büttner (frankb) fedora-extras-commits at redhat.com
Sat Aug 18 06:36:10 UTC 2007


Author: frankb

Update of /cvs/extras/rpms/nas/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv29494

Modified Files:
	nas.spec nasd.init 
Added Files:
	nasd_245712.patch 
Log Message:
fix for bug #245712


nasd_245712.patch:

--- NEW FILE nasd_245712.patch ---
diff -Naur nas-1.9.org/server/dda/voxware/auvoxware.c nas-1.9/server/dda/voxware/auvoxware.c
--- nas-1.9.org/server/dda/voxware/auvoxware.c	2007-08-18 08:03:21.000000000 +0200
+++ nas-1.9/server/dda/voxware/auvoxware.c	2007-08-18 08:05:09.000000000 +0200
@@ -1084,7 +1084,7 @@
         sigset_t set;
         sigemptyset(&set);
         sigaddset(&set, SIGALRM);
-        sigprocmask(SIG_UNBLOCK, &set, NULL);
+        sigprocmask(SIG_BLOCK, &set, NULL);
     }
 #endif
     if (processFlowEnabled) {
@@ -1095,7 +1095,7 @@
             sigset_t set;
             sigemptyset(&set);
             sigaddset(&set, SIGALRM);
-            sigprocmask(SIG_BLOCK, &set, NULL);
+            sigprocmask(SIG_UNBLOCK, &set, NULL);
         }
 #endif
         signal(SIGALRM, intervalProc);


Index: nas.spec
===================================================================
RCS file: /cvs/extras/rpms/nas/devel/nas.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- nas.spec	11 Aug 2007 17:34:45 -0000	1.15
+++ nas.spec	18 Aug 2007 06:35:37 -0000	1.16
@@ -1,7 +1,7 @@
 Name:		nas	
 Summary:	The Network Audio System (NAS)
 Version:	1.9
-Release:	3%{?dist}
+Release:	4%{?dist}
 BuildRequires:	bison flex
 %if "%{?fedora}" > "4" || "%{?rhel}" > "4"
 BuildRequires:	imake libXaw-devel libXpm-devel libXp-devel libXext-devel libXt-devel
@@ -20,6 +20,7 @@
 Source1:	http://apt.kde-redhat.org/apt/kde-redhat/SOURCES/nas/nasd.init
 Source2:	http://apt.kde-redhat.org/apt/kde-redhat/SOURCES/nas/nasd.sysconfig
 Patch0:		nasd_250453.patch
+Patch1:		nasd_245712.patch
 Buildroot: 	%{_tmppath}/NAS-%{version}-%{release}-root-%(%{__id_u} -n)
 Requires(preun): chkconfig /sbin/service
 Requires(post):  chkconfig
@@ -53,6 +54,7 @@
 %prep
 %setup -q -n nas-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
 xmkmf
@@ -114,6 +116,9 @@
 
 
 %changelog 
+*Sat Aug 18 2007 Frank Büttner  <frank-buettner at gmx.net> - 1.9-4
+ - fix for bug #245712
+
 * Sat Aug 11  2007 Frank Büttner  <frank-buettner at gmx.net> - 1.9-3
  - fix for bug #250453
 


Index: nasd.init
===================================================================
RCS file: /cvs/extras/rpms/nas/devel/nasd.init,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nasd.init	11 Aug 2007 17:34:45 -0000	1.2
+++ nasd.init	18 Aug 2007 06:35:37 -0000	1.3
@@ -1,10 +1,13 @@
 #!/bin/bash
-#
-# nasd        Starts nasd.
-#
-#
+### BEGIN INIT INFO
+# Provides: nasd
+# Default-Start: 5
+# Default-Stop: 0 1 2 3 4 6
+# Short-Description: start the nas daemon
+# Description: Network transparent audio server
+### END INIT INFO
+# Only for Fedora
 # chkconfig: 345 88 88
-# description: Network transparent audio server
 
 #Servicename
 SERVICE=nasd




More information about the fedora-extras-commits mailing list