summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Ostorga <vostorga@gentoo.org>2009-07-07 22:54:42 +0000
committerVictor Ostorga <vostorga@gentoo.org>2009-07-07 22:54:42 +0000
commit2593fecd2e12e7d2e12adae5228b6f633bd08bb3 (patch)
treeaedce68a2f7da4d4d38d700999129cefed559dd6 /media-radio/svxlink/files
parentUse elog for fetch error. (diff)
downloadhistorical-2593fecd2e12e7d2e12adae5228b6f633bd08bb3.tar.gz
historical-2593fecd2e12e7d2e12adae5228b6f633bd08bb3.tar.bz2
historical-2593fecd2e12e7d2e12adae5228b6f633bd08bb3.zip
Add patch to fix compilation with gcc 4.4, fixes bug 273837
Package-Manager: portage-2.1.6.13/cvs/Linux i686
Diffstat (limited to 'media-radio/svxlink/files')
-rw-r--r--media-radio/svxlink/files/svxlink-080730-gcc44.patch55
1 files changed, 55 insertions, 0 deletions
diff --git a/media-radio/svxlink/files/svxlink-080730-gcc44.patch b/media-radio/svxlink/files/svxlink-080730-gcc44.patch
new file mode 100644
index 000000000000..f45dbcb5d68e
--- /dev/null
+++ b/media-radio/svxlink/files/svxlink-080730-gcc44.patch
@@ -0,0 +1,55 @@
+diff -NrU5 svxlink-080730.original/async/audio/AsyncAudioDevice.h svxlink-080730/async/audio/AsyncAudioDevice.h
+--- svxlink-080730.original/async/audio/AsyncAudioDevice.h 2009-07-07 22:05:53.000000000 -0600
++++ svxlink-080730/async/audio/AsyncAudioDevice.h 2009-07-07 22:44:51.000000000 -0600
+@@ -35,10 +35,11 @@
+ *
+ * System Includes
+ *
+ ****************************************************************************/
+
++#include <stdint.h>
+ #include <sigc++/sigc++.h>
+
+ #include <string>
+ #include <map>
+ #include <list>
+diff -NrU5 svxlink-080730.original/async/core/AsyncSerialDevice.cpp svxlink-080730/async/core/AsyncSerialDevice.cpp
+--- svxlink-080730.original/async/core/AsyncSerialDevice.cpp 2009-07-07 22:05:53.000000000 -0600
++++ svxlink-080730/async/core/AsyncSerialDevice.cpp 2009-07-07 22:40:25.000000000 -0600
+@@ -33,10 +33,11 @@
+ *
+ * System Includes
+ *
+ ****************************************************************************/
+
++#include <stdio.h>
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <fcntl.h>
+ #include <errno.h>
+
+diff -NrU5 svxlink-080730.original/async/cpp/AsyncCppDnsLookupWorker.cpp svxlink-080730/async/cpp/AsyncCppDnsLookupWorker.cpp
+--- svxlink-080730.original/async/cpp/AsyncCppDnsLookupWorker.cpp 2009-07-07 22:05:53.000000000 -0600
++++ svxlink-080730/async/cpp/AsyncCppDnsLookupWorker.cpp 2009-07-07 22:42:37.000000000 -0600
+@@ -36,10 +36,11 @@
+ *
+ * System Includes
+ *
+ ****************************************************************************/
+
++#include <stdio.h>
+ #include <sys/socket.h>
+ #include <netinet/in.h>
+ #include <arpa/inet.h>
+ #include <sys/time.h>
+ #include <errno.h>
+diff -NrU5 svxlink-080730.original/async/demo/AsyncSerial_demo.cpp svxlink-080730/async/demo/AsyncSerial_demo.cpp
+--- svxlink-080730.original/async/demo/AsyncSerial_demo.cpp 2009-07-07 22:05:53.000000000 -0600
++++ svxlink-080730/async/demo/AsyncSerial_demo.cpp 2009-07-07 22:46:44.000000000 -0600
+@@ -1,5 +1,6 @@
++#include <stdio.h>
+ #include <iostream>
+ #include <cstdlib>
+
+ #include <AsyncCppApplication.h>
+ #include <AsyncSerial.h>