diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 18:33:48 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 18:33:48 +0800 |
commit | 1b3327761c8bcb98d89b529daeae9600844b4361 (patch) | |
tree | 0be1cd4eb5fec6661da4798906b0d9bd522e794f /audio/rhythmbox/files | |
parent | a65aedbb59fd9dfb33a4633611777da99ec4dcd5 (diff) | |
download | marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.gz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.bz2 marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.lz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.xz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.zst marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.zip |
Clean out MarcusCom after the big import into ports.
Next stop, GNOME 2.17.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7799 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/rhythmbox/files')
-rw-r--r-- | audio/rhythmbox/files/patch-daapsharing_rb-daap-src.c | 26 | ||||
-rw-r--r-- | audio/rhythmbox/files/patch-player_rb-recorder-gst.c | 12 | ||||
-rw-r--r-- | audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h | 10 |
3 files changed, 0 insertions, 48 deletions
diff --git a/audio/rhythmbox/files/patch-daapsharing_rb-daap-src.c b/audio/rhythmbox/files/patch-daapsharing_rb-daap-src.c deleted file mode 100644 index 02b36912b..000000000 --- a/audio/rhythmbox/files/patch-daapsharing_rb-daap-src.c +++ /dev/null @@ -1,26 +0,0 @@ ---- daapsharing/rb-daap-src.c.orig Fri Jan 27 21:11:13 2006 -+++ daapsharing/rb-daap-src.c Thu Feb 2 02:07:48 2006 -@@ -34,6 +34,7 @@ - #include <sys/ioctl.h> - #include <netdb.h> - #include <unistd.h> -+#include <signal.h> - #include <ctype.h> - - #include <libsoup/soup-headers.h> -@@ -435,7 +436,14 @@ rb_daap_src_write (RBDAAPSrc *src, const - size_t bytes_written = 0; - - while (bytes_written < count) { -- ssize_t wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL); -+ ssize_t wrote; -+#ifdef MSG_NOSIGNAL -+ wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL); -+#else -+ signal (SIGPIPE, SIG_IGN); -+ wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, 0); -+ signal (SIGPIPE, SIG_DFL); -+#endif - - if (wrote < 0) { - GST_WARNING ("error while writing: %s", g_strerror (errno)); diff --git a/audio/rhythmbox/files/patch-player_rb-recorder-gst.c b/audio/rhythmbox/files/patch-player_rb-recorder-gst.c deleted file mode 100644 index e8aae3495..000000000 --- a/audio/rhythmbox/files/patch-player_rb-recorder-gst.c +++ /dev/null @@ -1,12 +0,0 @@ ---- player/rb-recorder-gst.c.orig Wed Aug 10 20:06:11 2005 -+++ player/rb-recorder-gst.c Wed Aug 10 20:06:31 2005 -@@ -25,7 +25,9 @@ - #include <string.h> - #include <math.h> - #include <time.h> -+#ifndef __FreeBSD__ - #include <sys/vfs.h> -+#endif - #include <sys/types.h> - #include <sys/stat.h> - #include <fcntl.h> diff --git a/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h b/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h deleted file mode 100644 index 2208b3205..000000000 --- a/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h +++ /dev/null @@ -1,10 +0,0 @@ ---- podcast/rb-podcast-parse.h.orig Mon Nov 28 13:51:28 2005 -+++ podcast/rb-podcast-parse.h Mon Nov 28 13:51:05 2005 -@@ -22,6 +22,7 @@ - #ifndef RB_PODCAST_PARSE_H - #define RB_PODCAST_PARSE_H - -+#include <inttypes.h> - #include <glib.h> - - typedef struct |