summaryrefslogtreecommitdiff
path: root/audio/rhythmbox-devel/files
diff options
context:
space:
mode:
Diffstat (limited to 'audio/rhythmbox-devel/files')
-rw-r--r--audio/rhythmbox-devel/files/patch-configure29
-rw-r--r--audio/rhythmbox-devel/files/patch-plugins_cd-recorder_rb-recorder-gst.c12
-rw-r--r--audio/rhythmbox-devel/files/patch-plugins_daap_rb-daap-src.c26
-rw-r--r--audio/rhythmbox-devel/files/patch-plugins_mtpdevice_rb-mtp-source.c20
-rw-r--r--audio/rhythmbox-devel/files/patch-podcast_rb-podcast-parse.h10
5 files changed, 0 insertions, 97 deletions
diff --git a/audio/rhythmbox-devel/files/patch-configure b/audio/rhythmbox-devel/files/patch-configure
deleted file mode 100644
index cb7075d40108..000000000000
--- a/audio/rhythmbox-devel/files/patch-configure
+++ /dev/null
@@ -1,29 +0,0 @@
---- configure.orig 2008-03-17 00:11:17.000000000 -0400
-+++ configure 2008-03-17 00:26:52.000000000 -0400
-@@ -14152,7 +14152,7 @@ else
- echo "${ECHO_T}yes" >&6; }
- have_gio=yes
- fi
--if test x$have_gio == "xyes"; then
-+if test x$have_gio = "xyes"; then
-
- cat >>confdefs.h <<\_ACEOF
- #define HAVE_GIO 1
-@@ -14244,7 +14244,7 @@ echo "$as_me: error: HAL support explici
- { (exit 1); exit 1; }; }
- fi
-
-- if test "x$enable_hal" == "xyes"; then
-+ if test "x$enable_hal" = "xyes"; then
-
- cat >>confdefs.h <<\_ACEOF
- #define HAVE_HAL 1
-@@ -21807,7 +21807,7 @@ echo "${ECHO_T}yes" >&6; }
- :
- fi
- fi
--MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR:="\${libdir}/mozilla/plugins"}"
-+MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR}"
-
-
- if test x$enable_browser_plugin = xyes; then
diff --git a/audio/rhythmbox-devel/files/patch-plugins_cd-recorder_rb-recorder-gst.c b/audio/rhythmbox-devel/files/patch-plugins_cd-recorder_rb-recorder-gst.c
deleted file mode 100644
index c70afd0dc5e0..000000000000
--- a/audio/rhythmbox-devel/files/patch-plugins_cd-recorder_rb-recorder-gst.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- plugins/cd-recorder/rb-recorder-gst.c.orig Wed Aug 10 20:06:11 2005
-+++ plugins/cd-recorder/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-devel/files/patch-plugins_daap_rb-daap-src.c b/audio/rhythmbox-devel/files/patch-plugins_daap_rb-daap-src.c
deleted file mode 100644
index 4d9bb5178fc0..000000000000
--- a/audio/rhythmbox-devel/files/patch-plugins_daap_rb-daap-src.c
+++ /dev/null
@@ -1,26 +0,0 @@
---- plugins/daap/rb-daap-src.c.orig Fri Jan 27 21:11:13 2006
-+++ plugins/daap/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-devel/files/patch-plugins_mtpdevice_rb-mtp-source.c b/audio/rhythmbox-devel/files/patch-plugins_mtpdevice_rb-mtp-source.c
deleted file mode 100644
index 8dc96631aff8..000000000000
--- a/audio/rhythmbox-devel/files/patch-plugins_mtpdevice_rb-mtp-source.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- plugins/mtpdevice/rb-mtp-source.c.orig 2009-02-15 22:33:07.000000000 +0900
-+++ plugins/mtpdevice/rb-mtp-source.c 2009-02-15 22:35:14.000000000 +0900
-@@ -357,7 +357,7 @@
-
- g_assert (db != NULL);
-
-- tracks = LIBMTP_Get_Tracklisting (priv->device);
-+ tracks = LIBMTP_Get_Tracklisting_With_Callback (priv->device, NULL, NULL);
- if (tracks != NULL) {
- LIBMTP_track_t *track, *tmp = NULL;
- for (track = tracks; track != NULL; track = track->next) {
-@@ -714,7 +714,7 @@
- trackmeta->filetype = mimetype_to_filetype (mimetype);
- }
-
-- if (LIBMTP_Send_Track_From_File (device, filename, trackmeta, NULL, NULL, 0) != 0) {
-+ if (LIBMTP_Send_Track_From_File (device, filename, trackmeta, NULL, NULL) != 0) {
- LIBMTP_destroy_track_t (trackmeta);
- rb_debug ("Tracktransfer failed\n");
- return NULL;
diff --git a/audio/rhythmbox-devel/files/patch-podcast_rb-podcast-parse.h b/audio/rhythmbox-devel/files/patch-podcast_rb-podcast-parse.h
deleted file mode 100644
index 2208b3205f0d..000000000000
--- a/audio/rhythmbox-devel/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