[Pkg-voip-commits] r1018 - in twinkle/trunk/debian: . patches

Mark Purcell msp at costa.debian.org
Sun Nov 20 23:43:01 UTC 2005


Author: msp
Date: 2005-11-20 23:43:01 +0000 (Sun, 20 Nov 2005)
New Revision: 1018

Removed:
   twinkle/trunk/debian/patches/twinkle_thread_timings.patch
Modified:
   twinkle/trunk/debian/control
Log:
releasing version 0.4.1-1

Modified: twinkle/trunk/debian/control
===================================================================
--- twinkle/trunk/debian/control	2005-11-20 23:06:23 UTC (rev 1017)
+++ twinkle/trunk/debian/control	2005-11-20 23:43:01 UTC (rev 1018)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian VoIP Team <pkg-voip-maintainers at lists.alioth.debian.org>
 Uploaders: Kilian Krause <kilian at debian.org>, Jose Carlos Garcia Sogo <jsogo at debian.org>, Mark Purcell <msp at debian.org>, Santiago Garcia Mantinan <manty at debian.org>
-Build-Depends: debhelper (>= 4.0.0), autotools-dev, libcommoncpp2-dev (>=1.3.10-4), libccrtp-dev (>=1.3.4), help2man, libqt3-mt-dev (>= 3:3.3.4-4), qt3-apps-dev, automake1.9, libxml2-dev, cdbs, kdelibs-bin, kdelibs4-dev, libasound2-dev [!kfreebsd], libxml2-dev
+Build-Depends: debhelper (>= 4.0.0), autotools-dev, libcommoncpp2-dev (>=1.3.10-4), libccrtp-dev (>=1.3.4), help2man, libqt3-mt-dev (>= 3:3.3.4-4), qt3-apps-dev, automake1.9, libxml2-dev, cdbs, kdelibs-bin, kdelibs4-dev, libasound2-dev [!kfreebsd-i386], libxml2-dev
 Standards-Version: 3.6.1
 
 Package: twinkle

Deleted: twinkle/trunk/debian/patches/twinkle_thread_timings.patch
===================================================================
--- twinkle/trunk/debian/patches/twinkle_thread_timings.patch	2005-11-20 23:06:23 UTC (rev 1017)
+++ twinkle/trunk/debian/patches/twinkle_thread_timings.patch	2005-11-20 23:43:01 UTC (rev 1018)
@@ -1,88 +0,0 @@
-only in patch2:
-unchanged:
---- twinkle-0.2.1.orig/src/audio/audio_session.cpp
-+++ twinkle-0.2.1/src/audio/audio_session.cpp
-@@ -672,11 +672,13 @@
- 
- 	if (audio_rx) {
- 		try {
-+			audio_rx->set_running(true);
- 			thr_audio_rx = new t_thread(main_audio_rx, NULL);
- 			MEMMAN_NEW(thr_audio_rx);
- 			// thr_audio_rx->set_sched_fifo(90);
- 			thr_audio_rx->detach();
- 		} catch (int) {
-+			audio_rx->set_running(false);
- 			string msg("Failed to create audio_rx thread.");
- 			log_file->write_report(msg, "t_audio_session::run",
- 				LOG_NORMAL, LOG_CRITICAL);
-@@ -688,11 +690,13 @@
- 
- 	if (audio_tx) {
- 		try {
-+			audio_tx->set_running(true);
- 			thr_audio_tx = new t_thread(main_audio_tx, NULL);
- 			MEMMAN_NEW(thr_audio_tx);
- 			// thr_audio_tx->set_sched_fifo(90);
- 			thr_audio_tx->detach();
- 		} catch (int) {
-+			audio_tx->set_running(false);
- 			string msg("Failed to create audio_tx thread.");
- 			log_file->write_report(msg, "t_audio_session::run",
- 				LOG_NORMAL, LOG_CRITICAL);
-only in patch2:
-unchanged:
---- twinkle-0.2.1.orig/src/audio/audio_rx.cpp
-+++ twinkle-0.2.1/src/audio/audio_rx.cpp
-@@ -397,6 +397,10 @@
- 	}
- }
- 
-+void t_audio_rx::set_running(bool _is_running) {
-+	is_running = _is_running;
-+}
-+
- void t_audio_rx::run(void) {
- 	int status;
- 	audio_buf_info dsp_info;
-only in patch2:
-unchanged:
---- twinkle-0.2.1.orig/src/audio/audio_rx.h
-+++ twinkle-0.2.1/src/audio/audio_rx.h
-@@ -156,6 +156,8 @@
- 
- 	~t_audio_rx();
- 
-+	void set_running(bool is_running);
-+
- 	void run(void);
- 
- 	// Set the dynamic payload type for telephone events
-only in patch2:
-unchanged:
---- twinkle-0.2.1.orig/src/audio/audio_tx.h
-+++ twinkle-0.2.1/src/audio/audio_tx.h
-@@ -148,6 +148,8 @@
- 
- 	~t_audio_tx();
- 
-+	void set_running(bool is_running);
-+
- 	void run(void);
- 	
- 	// Set the dynamic payload type for telephone events
-only in patch2:
-unchanged:
---- twinkle-0.2.1.orig/src/audio/audio_tx.cpp
-+++ twinkle-0.2.1/src/audio/audio_tx.cpp
-@@ -330,6 +330,10 @@
- 	}
- }
- 
-+void t_audio_tx::set_running(bool _is_running) {
-+	is_running = _is_running;
-+}
-+
- void t_audio_tx::run(void) {
- 	const AppDataUnit* adu;
- 	struct timespec sleeptimer;




More information about the Pkg-voip-commits mailing list