summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-02-01 15:09:18 +0000
committerSamuli Suominen <drac@gentoo.org>2008-02-01 15:09:18 +0000
commit41b7fd70c493e318fae400b6144de9c0372662ff (patch)
tree24c73dfba8ef29adb016e4703d73593ff38093b1 /media-sound/muse/files
parentChange to new syntax of eselect-emacs. (diff)
downloadgentoo-2-41b7fd70c493e318fae400b6144de9c0372662ff.tar.gz
gentoo-2-41b7fd70c493e318fae400b6144de9c0372662ff.tar.bz2
gentoo-2-41b7fd70c493e318fae400b6144de9c0372662ff.zip
punt
(Portage version: 2.1.4.1)
Diffstat (limited to 'media-sound/muse/files')
-rw-r--r--media-sound/muse/files/muse-0.9.1-include.patch21
-rw-r--r--media-sound/muse/files/muse-0.9.1-miscfixes.patch61
2 files changed, 0 insertions, 82 deletions
diff --git a/media-sound/muse/files/muse-0.9.1-include.patch b/media-sound/muse/files/muse-0.9.1-include.patch
deleted file mode 100644
index ec76f4c2ffd4..000000000000
--- a/media-sound/muse/files/muse-0.9.1-include.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- src/inchannels.cpp.orig 2005-01-08 18:19:33.805672152 +0100
-+++ src/inchannels.cpp 2005-01-08 18:24:42.329769360 +0100
-@@ -30,6 +30,7 @@
- #include <sys/types.h>
- #include <sys/wait.h>
- #include <signal.h>
-+#include <errno.h>
-
- /* mixing and audioprocessing algorithms*/
- #include <audioproc.h>
-
---- src/pipe.cpp.orig 2005-01-08 18:50:27.093929512 +0100
-+++ src/pipe.cpp 2005-01-08 18:50:48.758635976 +0100
-@@ -31,7 +31,7 @@
- #include <pipe.h>
- #include <jutils.h>
- #include <config.h>
--
-+#include <math.h>
-
- #define MIN(a,b) (a<=b) ? a : b;
diff --git a/media-sound/muse/files/muse-0.9.1-miscfixes.patch b/media-sound/muse/files/muse-0.9.1-miscfixes.patch
deleted file mode 100644
index b08677de7380..000000000000
--- a/media-sound/muse/files/muse-0.9.1-miscfixes.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-diff -u MuSE-0.9.1/src/pipe.cpp MuSE-0.9.1-fixed/src/pipe.cpp
---- MuSE-0.9.1/src/pipe.cpp 2005-01-20 15:07:37.659868128 +0100
-+++ MuSE-0.9.1-fixed/src/pipe.cpp 2005-01-20 15:03:48.514703488 +0100
-@@ -225,9 +225,9 @@
- (data, start,
- blk / read_copy_cb->src_samplesize);
-
-- (char*)start += blk;
-+ start = (int*)( (char*)start + blk );
- len -= blk;
-- (char*)data += blk;
-+ data = (int*)( (char*)data + blk );
- worklen -= blk;
- if ((end!=buffer) && (start==bufferEnd))
- start = buffer;
-@@ -238,8 +238,8 @@
- (data, start,
- len / read_copy_cb->src_samplesize);
-
-- (char*)data += len;
-- (char*)start += len;
-+ data = (int*)( (char*)data + len );
-+ start = (int*)( (char*)start + len );
- worklen -= len;
- if ((end!=buffer) && (start==bufferEnd))
- start = buffer;
-@@ -304,9 +304,9 @@
- (end, data,
- blk / write_copy_cb->dst_samplesize);
-
-- (char*)end += blk;
-+ end = (int*)( (char*)end + blk );
- len -= blk;
-- (char*)data += blk;
-+ data = (int*)( (char*)data + blk );
- worklen -= blk;
- if ((start!=buffer)
- && (end==bufferEnd))
-@@ -318,8 +318,8 @@
- (end, data,
- len / write_copy_cb->dst_samplesize);
-
-- (char*)data += len;
-- (char*)end += len;
-+ data = (int*)( (char*)data + len );
-+ end = (int*)( (char*)end + len );
- worklen -= len;
-
- if ((start!=buffer)
-diff -u MuSE-0.9.1/src/radiosched.cpp MuSE-0.9.1-fixed/src/radiosched.cpp
---- MuSE-0.9.1/src/radiosched.cpp 2004-12-15 19:18:06.000000000 +0100
-+++ MuSE-0.9.1-fixed/src/radiosched.cpp 2005-01-20 15:04:28.541618472 +0100
-@@ -762,7 +762,7 @@
- parse_xml_sched_file( sched_rec_callb callb, void *udata, sched_rec *sr )
- {
- gchar *buf=NULL;
-- guint len;
-+ gsize len;
- xml_user_data calldata = {callb, udata, sr};
-
- g_file_get_contents(sched_file_path(), &buf, &len, NULL);