pidgin: Add broken note and disable music messaging plugin

Tue, 02 Oct 2018 16:30:17 -0500

author
Mike Ruprecht <cmaiku@gmail.com>
date
Tue, 02 Oct 2018 16:30:17 -0500
changeset 39350
a0925687da21
parent 39349
c28414267b99
child 39351
33fb527b0f10

pidgin: Add broken note and disable music messaging plugin

Since Purple's DBus API is about to be removed, this patch adds a note
to libpurple's music messaging plugin stating this and disables it
from being built. It should be possible to port this to modern Gio
DBus API, but that's for another patch.

pidgin/plugins/meson.build file | annotate | diff | comparison | revisions
pidgin/plugins/musicmessaging/musicmessaging.c file | annotate | diff | comparison | revisions
--- a/pidgin/plugins/meson.build	Tue Oct 02 16:04:58 2018 -0500
+++ b/pidgin/plugins/meson.build	Tue Oct 02 16:30:17 2018 -0500
@@ -2,7 +2,7 @@
 	subdir('gevolution')
 endif
 
-if enable_dbus
+if false
 	subdir('musicmessaging')
 endif
 
--- a/pidgin/plugins/musicmessaging/musicmessaging.c	Tue Oct 02 16:04:58 2018 -0500
+++ b/pidgin/plugins/musicmessaging/musicmessaging.c	Tue Oct 02 16:30:17 2018 -0500
@@ -19,6 +19,10 @@
  * 02111-1301, USA.
  */
 
+/* NOTICE: This plugin is currently broken as the libpurple DBus bindings
+ * have been removed.
+ */
+
 #include "internal.h"
 #include "pidgin.h"
 

mercurial