summaryrefslogtreecommitdiff
path: root/audio/rhythmbox
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2004-03-09 21:52:44 +0000
committerjmmv <jmmv@pkgsrc.org>2004-03-09 21:52:44 +0000
commit273a10c1fdd40178eb13092ea4646f9c299aad9f (patch)
treef02bdb6fb1577dd33b828cf503b6727a6ec83057 /audio/rhythmbox
parent7ba5dd85406ee248955bfdeb1200a7ff53731d4e (diff)
downloadpkgsrc-273a10c1fdd40178eb13092ea4646f9c299aad9f.tar.gz
Fix build under 1.6.2 by removing a C99-ism.
Noted by last kristerw's bulk build.
Diffstat (limited to 'audio/rhythmbox')
-rw-r--r--audio/rhythmbox/distinfo3
-rw-r--r--audio/rhythmbox/patches/patch-aa17
2 files changed, 19 insertions, 1 deletions
diff --git a/audio/rhythmbox/distinfo b/audio/rhythmbox/distinfo
index cea32ac1307..3a1e68a052a 100644
--- a/audio/rhythmbox/distinfo
+++ b/audio/rhythmbox/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.2 2004/02/29 16:41:21 jmmv Exp $
+$NetBSD: distinfo,v 1.3 2004/03/09 21:52:44 jmmv Exp $
SHA1 (rhythmbox-0.6.7.tar.gz) = 5f736e0c13b755c933b6ca52573ee57a278da39e
Size (rhythmbox-0.6.7.tar.gz) = 1969387 bytes
+SHA1 (patch-aa) = 67942966ea47c7f8586abff5dd229282fd60b08e
SHA1 (patch-ab) = 2fbc9afc2fea902c9e6fa848e1e08e12e1297dad
diff --git a/audio/rhythmbox/patches/patch-aa b/audio/rhythmbox/patches/patch-aa
new file mode 100644
index 00000000000..d3c9659c0cb
--- /dev/null
+++ b/audio/rhythmbox/patches/patch-aa
@@ -0,0 +1,17 @@
+$NetBSD: patch-aa,v 1.3 2004/03/09 21:52:44 jmmv Exp $
+
+--- shell/rb-shell.c.orig 2004-02-27 20:32:30.000000000 +0100
++++ shell/rb-shell.c
+@@ -617,10 +617,11 @@ rb_shell_corba_handle_file (PortableServ
+ {
+ RBShell *shell = RB_SHELL (bonobo_object (_servant));
+ RBPlaylist *parser;
++ GnomeVFSURI *vfsuri;
+
+ rb_debug ("handling uri: %s", uri);
+
+- GnomeVFSURI *vfsuri = gnome_vfs_uri_new (uri);
++ vfsuri = gnome_vfs_uri_new (uri);
+ if (!vfsuri) {
+ rb_error_dialog (_("Unable to parse URI \"%s\"\n"), uri);
+ return;