pidgin/pidgin

Stop using PurpleBuddy in Pidgin

2 months ago, Gary Kramlich
3761ba966eed
Stop using PurpleBuddy in Pidgin

PurpleBuddy was replaced by PurpleContactInfo a long time ago, and this stuff
just hadn't been updated yet.

Testing Done:
Let the turtles do their thing and verified that the avatars still show up for the demo protocol plugin.

Reviewed at https://reviews.imfreedom.org/r/3121/
XMPP_SOURCES = [
'purplexmppconnection.c',
'purplexmppcore.c',
'purplexmppprotocol.c',
]
XMPP_HEADERS = [
'purplexmppconnection.h',
'purplexmppconstants.h',
'purplexmppcore.h',
'purplexmppprotocol.h',
]
if not DYNAMIC_XMPP
subdir_done()
endif
xmpp_resources = gnome.compile_resources('xmppresource',
'resources/xmpp.gresource.xml',
source_dir : 'resources',
c_name : 'purple_xmpp')
XMPP_SOURCES += xmpp_resources
xmpp_prpl = library('xmpp',
XMPP_SOURCES + XMPP_HEADERS,
c_args : ['-DPURPLE_XMPP_COMPILATION', '-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="Purple-XMPP"'],
gnu_symbol_visibility : 'hidden',
dependencies : [libpurple_dep, glib, gio, hasl, xeme],
install : true,
install_dir : PURPLE_PLUGINDIR)
devenv.append('PURPLE_PLUGIN_PATH', meson.current_build_dir())