diff options
Diffstat (limited to 'audio/rhythmbox-devel/files')
4 files changed, 0 insertions, 99 deletions
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_ipod_rb-ipod-source.c b/audio/rhythmbox-devel/files/patch-plugins_ipod_rb-ipod-source.c deleted file mode 100644 index 2195b06b22bc..000000000000 --- a/audio/rhythmbox-devel/files/patch-plugins_ipod_rb-ipod-source.c +++ /dev/null @@ -1,51 +0,0 @@ ---- plugins/ipod/rb-ipod-source.c.orig Sun Nov 19 12:12:33 2006 -+++ plugins/ipod/rb-ipod-source.c Sun Nov 19 12:28:50 2006 -@@ -695,33 +695,36 @@ hal_udi_is_ipod (const char *udi) - char *spider_udi; - int vnd_id = 0; - int product_id = 0; -+ DBusError phone_error; -+ -+ dbus_error_init (&phone_error); - - spider_udi = g_strdup(parent_udi); - while (vnd_id == 0 && product_id == 0 && spider_udi != NULL) { - char *old_udi = spider_udi; - spider_udi = libhal_device_get_property_string (ctx, spider_udi, -- "info.parent", &error); -- if (dbus_error_is_set (&error)) { -- dbus_error_free (&error); -- dbus_error_init (&error); -+ "info.parent", &phone_error); -+ if (dbus_error_is_set (&phone_error)) { -+ dbus_error_free (&phone_error); -+ dbus_error_init (&phone_error); - spider_udi = NULL; - break; - } - g_free(old_udi); - - vnd_id = libhal_device_get_property_int (ctx, spider_udi, -- "usb.vendor_id", &error); -- if (dbus_error_is_set(&error)) { -- dbus_error_free (&error); -- dbus_error_init (&error); -+ "usb.vendor_id", &phone_error); -+ if (dbus_error_is_set(&phone_error)) { -+ dbus_error_free (&phone_error); -+ dbus_error_init (&phone_error); - vnd_id = 0; - } - - product_id = libhal_device_get_property_int (ctx, spider_udi, -- "usb.product_id", &error); -- if (dbus_error_is_set(&error)) { -- dbus_error_free (&error); -- dbus_error_init (&error); -+ "usb.product_id", &phone_error); -+ if (dbus_error_is_set(&phone_error)) { -+ dbus_error_free (&phone_error); -+ dbus_error_init (&phone_error); - product_id = 0; - } - } 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 |