# HG changeset patch # User Stu Tomlinson # Date 1210971684 0 # Node ID 410f1bf7f734b83a2d787db5f7d4246ef552717f # Parent 77fc073e5a0b5bbc7123604d13013856958ca707 I have no idea why this only started being an issue now, but as I was checking to see if I could build the RPMs, dbus started complaining that DBUS_API_SUBJECT_TO_CHANGE was not defined. Hopefully this fix will make that unlikely to be a problem ever again. diff -r 77fc073e5a0b -r 410f1bf7f734 libpurple/dbus-maybe.h --- a/libpurple/dbus-maybe.h Fri May 16 20:19:12 2008 +0000 +++ b/libpurple/dbus-maybe.h Fri May 16 21:01:24 2008 +0000 @@ -8,6 +8,10 @@ #ifdef HAVE_DBUS +#ifndef DBUS_API_SUBJECT_TO_CHANGE +#define DBUS_API_SUBJECT_TO_CHANGE +#endif + #include "dbus-server.h" /* this provides a type check */