summaryrefslogtreecommitdiff
path: root/audio/rhythmbox/patches
diff options
context:
space:
mode:
authorjmmv <jmmv>2004-03-09 21:52:44 +0000
committerjmmv <jmmv>2004-03-09 21:52:44 +0000
commit1404d77d51bffad034638731be59c472735e0bf9 (patch)
treef02bdb6fb1577dd33b828cf503b6727a6ec83057 /audio/rhythmbox/patches
parent225d58f274133277cc7aabaf3123ddc8e34e549d (diff)
downloadpkgsrc-1404d77d51bffad034638731be59c472735e0bf9.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/patches')
-rw-r--r--audio/rhythmbox/patches/patch-aa17
1 files changed, 17 insertions, 0 deletions
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;