summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2010-02-19 16:06:09 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2010-02-19 16:06:09 +0000
commit8cd4732bcc2d46c55389c2b82c26f72727cac30d (patch)
tree858412ef06a1a37b0e962464fbaa57fa6594505c /media-radio/svxlink/files
parentMoved to lxde-overlay http://bitbucket.org/yngwin/lxde-overlay/ (diff)
downloadhistorical-8cd4732bcc2d46c55389c2b82c26f72727cac30d.tar.gz
historical-8cd4732bcc2d46c55389c2b82c26f72727cac30d.tar.bz2
historical-8cd4732bcc2d46c55389c2b82c26f72727cac30d.zip
unused patches
Package-Manager: portage-2.2_rc62/cvs/Linux x86_64
Diffstat (limited to 'media-radio/svxlink/files')
-rw-r--r--media-radio/svxlink/files/svxlink-080730-gcc44.patch55
-rw-r--r--media-radio/svxlink/files/svxlink-080730-glibc210.patch48
-rw-r--r--media-radio/svxlink/files/svxlink-080730-spandsp-0.0.6_pre2.patch21
-rw-r--r--media-radio/svxlink/files/svxlink-fix-Makefile.diff18
4 files changed, 0 insertions, 142 deletions
diff --git a/media-radio/svxlink/files/svxlink-080730-gcc44.patch b/media-radio/svxlink/files/svxlink-080730-gcc44.patch
deleted file mode 100644
index f45dbcb5d68e..000000000000
--- a/media-radio/svxlink/files/svxlink-080730-gcc44.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-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>
diff --git a/media-radio/svxlink/files/svxlink-080730-glibc210.patch b/media-radio/svxlink/files/svxlink-080730-glibc210.patch
deleted file mode 100644
index 6fd63f4ce276..000000000000
--- a/media-radio/svxlink/files/svxlink-080730-glibc210.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -NrU5 svxlink-080730.original/echolib/EchoLinkStationData.cpp svxlink-080730/echolib/EchoLinkStationData.cpp
---- svxlink-080730.original/echolib/EchoLinkStationData.cpp 2009-07-23 21:51:06.000000000 -0600
-+++ svxlink-080730/echolib/EchoLinkStationData.cpp 2009-07-23 21:53:31.000000000 -0600
-@@ -199,11 +199,11 @@
- else
- {
- m_status = STAT_UNKNOWN;
- }
-
-- char *space = strchr(end_desc, ' ');
-+ const char *space = strchr(end_desc, ' ');
- if (space != 0)
- {
- strncpy(str, space+1, 5);
- str[5] = 0;
- m_time = str;
-diff -NrU5 svxlink-080730.original/svxlink/remotetrx/remotetrx.cpp svxlink-080730/svxlink/remotetrx/remotetrx.cpp
---- svxlink-080730.original/svxlink/remotetrx/remotetrx.cpp 2009-07-23 21:51:06.000000000 -0600
-+++ svxlink-080730/svxlink/remotetrx/remotetrx.cpp 2009-07-23 22:02:04.000000000 -0600
-@@ -617,11 +617,11 @@
- continue;
- }
- }
-
- int write_len = 0;
-- char *nl = strchr(ptr, '\n');
-+ const char *nl = strchr(ptr, '\n');
- if (nl != 0)
- {
- write_len = nl-ptr+1;
- print_timestamp = true;
- }
-diff -NrU5 svxlink-080730.original/svxlink/svxlink/svxlink.cpp svxlink-080730/svxlink/svxlink/svxlink.cpp
---- svxlink-080730.original/svxlink/svxlink/svxlink.cpp 2009-07-23 21:51:06.000000000 -0600
-+++ svxlink-080730/svxlink/svxlink/svxlink.cpp 2009-07-23 21:59:04.000000000 -0600
-@@ -607,11 +607,11 @@
- continue;
- }
- }
-
- int write_len = 0;
-- char *nl = strchr(ptr, '\n');
-+ const char *nl = strchr(ptr, '\n');
- if (nl != 0)
- {
- write_len = nl-ptr+1;
- print_timestamp = true;
- }
diff --git a/media-radio/svxlink/files/svxlink-080730-spandsp-0.0.6_pre2.patch b/media-radio/svxlink/files/svxlink-080730-spandsp-0.0.6_pre2.patch
deleted file mode 100644
index 8a248dec4436..000000000000
--- a/media-radio/svxlink/files/svxlink-080730-spandsp-0.0.6_pre2.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-=== modified file 'svxlink/trx/SpanDtmfDecoder.cpp'
---- svxlink/trx/SpanDtmfDecoder.cpp 2008-12-07 18:35:58 +0000
-+++ svxlink/trx/SpanDtmfDecoder.cpp 2008-12-07 18:38:37 +0000
-@@ -40,6 +40,7 @@
- #include <stdlib.h>
- #include <stdint.h>
- #include <spandsp.h>
-+#include <spandsp/expose.h>
-
-
- /****************************************************************************
-@@ -166,7 +167,7 @@
- }
-
- dtmf_rx_init(&p->rx_state, NULL, this);
-- dtmf_rx_parms(&p->rx_state, FALSE, max_fwd_twist, max_rev_twist);
-+ dtmf_rx_parms(&p->rx_state, FALSE, max_fwd_twist, max_rev_twist, -99);
- dtmf_rx_set_realtime_callback(&p->rx_state, SpanDtmfDecoder::toneReportCb,
- this);
-
-
diff --git a/media-radio/svxlink/files/svxlink-fix-Makefile.diff b/media-radio/svxlink/files/svxlink-fix-Makefile.diff
deleted file mode 100644
index faccb22c6578..000000000000
--- a/media-radio/svxlink/files/svxlink-fix-Makefile.diff
+++ /dev/null
@@ -1,18 +0,0 @@
-# fixes the problem with not building '.config' fiel if you have an '.config'
-# in the filesystem root '/' (see bug 234090)
-
---- Makefile.orig 2007-08-23 23:43:28.000000000 +0200
-+++ Makefile 2008-08-12 21:53:59.000000000 +0200
-@@ -255,6 +255,12 @@
- fi
- endif
-
-+#
-+# Create the .config file if it does not exist
-+#
-+$(ROOT)/.config: $(ROOT)/create_config.sh
-+ echo -e --- Creating $(BOLD)$@$(NBOLD)...
-+ $(ROOT)/create_config.sh $@
-
- #
- # Create a cache file containing the relative path to the project root