The upcoming glib 2.26 will have a struct member called "signals" in its headers (included from gio.h). The problem is that qobjectdefs.h does "#define signals protected" which cause build errors when using qt and glib together. To work around this, I guess we need to add some #undef signals in various places. I'll try to make a patch.
I opened a bug against gio to see if they are kind enough to change their API: https://bugzilla.gnome.org/show_bug.cgi?id=628486
As expected, the glib bug got rejected... So I made a fix in tp-qt4: http://git.collabora.co.uk/?p=user/xclaesse/telepathy-qt4.git;a=commitdiff;h=42fbacd1af1d9282a4b3cac2c23f06c652cc3a92 The idea is to define QT_NO_KEYWORDS everywhere glib is used (telepathy-glib and telepathy-farsight). That means that "signals" won't be defined, but also "foreach" and "emit" so I had to replace them with Q_FOREACH and Q_EMIT.
merged in master.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.