rpms/svxlink/F-9 svxlink-090426-gcc44.patch,NONE,1.1

Lucian Langa lucilanga at fedoraproject.org
Sun May 31 10:57:36 UTC 2009


Author: lucilanga

Update of /cvs/pkgs/rpms/svxlink/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv13024

Added Files:
	svxlink-090426-gcc44.patch 
Log Message:
* Sun May 31 2009 Lucian Langa <cooly at gnome.eu.org> - 090426-1
- update BR
- drop svxlink-devel package
- updated descriptions
- remove dtmf_plot
- drop patch0,1,2,3 as were fixed upstream
- new upstream release

svxlink-090426-gcc44.patch:

--- NEW FILE svxlink-090426-gcc44.patch ---
diff -Naur svxlink-090426/async/audio/AsyncAudioDecoderS16.cpp svxlink-090426-mod/async/audio/AsyncAudioDecoderS16.cpp
--- svxlink-090426/async/audio/AsyncAudioDecoderS16.cpp	2009-04-09 13:42:34.000000000 +0300
+++ svxlink-090426-mod/async/audio/AsyncAudioDecoderS16.cpp	2009-05-09 17:41:49.000000000 +0300
@@ -48,6 +48,7 @@
  *
  ****************************************************************************/
 
+#include <stdint.h>
 #include "AsyncAudioDecoderS16.h"
 
 
diff -Naur svxlink-090426/async/audio/AsyncAudioDevice.h svxlink-090426-mod/async/audio/AsyncAudioDevice.h
--- svxlink-090426/async/audio/AsyncAudioDevice.h	2009-03-04 00:30:40.000000000 +0200
+++ svxlink-090426-mod/async/audio/AsyncAudioDevice.h	2009-05-09 17:40:06.000000000 +0300
@@ -37,6 +37,7 @@
  *
  ****************************************************************************/
 
+#include <stdint.h>
 #include <sigc++/sigc++.h>
 
 #include <string>
diff -Naur svxlink-090426/async/audio/AsyncAudioRecorder.h svxlink-090426-mod/async/audio/AsyncAudioRecorder.h
--- svxlink-090426/async/audio/AsyncAudioRecorder.h	2009-04-26 12:17:53.000000000 +0300
+++ svxlink-090426-mod/async/audio/AsyncAudioRecorder.h	2009-05-09 17:42:09.000000000 +0300
@@ -34,6 +34,7 @@
  *
  ****************************************************************************/
 
+#include <stdint.h>
 #include <stdio.h>
 #include <sigc++/sigc++.h>
 
diff -Naur svxlink-090426/async/core/AsyncSerialDevice.cpp svxlink-090426-mod/async/core/AsyncSerialDevice.cpp
--- svxlink-090426/async/core/AsyncSerialDevice.cpp	2006-11-07 22:44:20.000000000 +0200
+++ svxlink-090426-mod/async/core/AsyncSerialDevice.cpp	2009-05-09 17:40:06.000000000 +0300
@@ -35,6 +35,7 @@
  *
  ****************************************************************************/
 
+#include <stdio.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
diff -Naur svxlink-090426/async/cpp/AsyncCppDnsLookupWorker.cpp svxlink-090426-mod/async/cpp/AsyncCppDnsLookupWorker.cpp
--- svxlink-090426/async/cpp/AsyncCppDnsLookupWorker.cpp	2009-04-26 12:17:53.000000000 +0300
+++ svxlink-090426-mod/async/cpp/AsyncCppDnsLookupWorker.cpp	2009-05-09 17:40:06.000000000 +0300
@@ -38,6 +38,7 @@
  *
  ****************************************************************************/
 
+#include <stdio.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
diff -Naur svxlink-090426/async/demo/AsyncSerial_demo.cpp svxlink-090426-mod/async/demo/AsyncSerial_demo.cpp
--- svxlink-090426/async/demo/AsyncSerial_demo.cpp	2008-05-13 21:57:54.000000000 +0300
+++ svxlink-090426-mod/async/demo/AsyncSerial_demo.cpp	2009-05-09 17:40:06.000000000 +0300
@@ -1,3 +1,4 @@
+#include <stdio.h>
 #include <iostream>
 #include <cstdlib>
 
diff -Naur svxlink-090426/echolib/EchoLinkStationData.cpp svxlink-090426-mod/echolib/EchoLinkStationData.cpp
--- svxlink-090426/echolib/EchoLinkStationData.cpp	2007-11-26 23:18:27.000000000 +0200
+++ svxlink-090426-mod/echolib/EchoLinkStationData.cpp	2009-05-09 17:40:06.000000000 +0300
@@ -201,7 +201,7 @@
       m_status = STAT_UNKNOWN;
     }
     
-    char *space = strchr(end_desc, ' ');
+    char *space = strchr((char *)end_desc, ' ');
     if (space != 0)
     {
       strncpy(str, space+1, 5);
diff -Naur svxlink-090426/svxlink/remotetrx/remotetrx.cpp svxlink-090426-mod/svxlink/remotetrx/remotetrx.cpp
--- svxlink-090426/svxlink/remotetrx/remotetrx.cpp	2009-04-26 12:17:53.000000000 +0300
+++ svxlink-090426-mod/svxlink/remotetrx/remotetrx.cpp	2009-05-09 17:40:06.000000000 +0300
@@ -678,7 +678,7 @@
     }
 
     int write_len = 0;
-    char *nl = strchr(ptr, '\n');
+    char *nl = strchr((char *)ptr, '\n');
     if (nl != 0)
     {
       write_len = nl-ptr+1;
diff -Naur svxlink-090426/svxlink/svxlink/MsgHandler.cpp svxlink-090426-mod/svxlink/svxlink/MsgHandler.cpp
--- svxlink-090426/svxlink/svxlink/MsgHandler.cpp	2009-02-08 14:56:13.000000000 +0200
+++ svxlink-090426-mod/svxlink/svxlink/MsgHandler.cpp	2009-05-09 17:43:36.000000000 +0300
@@ -34,6 +34,7 @@
  *
  ****************************************************************************/
 
+#include <stdint.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
diff -Naur svxlink-090426/svxlink/svxlink/svxlink.cpp svxlink-090426-mod/svxlink/svxlink/svxlink.cpp
--- svxlink-090426/svxlink/svxlink/svxlink.cpp	2009-04-26 12:17:53.000000000 +0300
+++ svxlink-090426-mod/svxlink/svxlink/svxlink.cpp	2009-05-09 17:40:06.000000000 +0300
@@ -661,7 +661,7 @@
     }
 
     int write_len = 0;
-    char *nl = strchr(ptr, '\n');
+    char *nl = strchr((char *)ptr, '\n');
     if (nl != 0)
     {
       write_len = nl-ptr+1;




More information about the scm-commits mailing list