pidgin/pidgin

Remove the SIMPLE protocol plugin

2020-10-29, Gary Kramlich
0aa669949990
Remove the SIMPLE protocol plugin

Remove the SIMPLE plugin as we will be replacing it with a full SIP plugin in the near future.

Testing Done:
Built, ran unit tests, made sure the pot file still built.

Reviewed at https://reviews.imfreedom.org/r/177/
BONJOURSOURCES = [
'bonjour.c',
'bonjour.h',
'buddy.c',
'buddy.h',
'xmpp.c',
'xmpp.h',
'mdns_common.c',
'mdns_common.h',
'mdns_interface.h',
'mdns_types.h',
'parser.c',
'parser.h',
'bonjour_ft.c',
'bonjour_ft.h'
]
if IS_WIN32
BONJOURSOURCES += ['dns_sd_proxy.c', 'mdns_dns_sd.c']
bonjour_link_args = ['-lnetapi32']
else
BONJOURSOURCES += ['mdns_avahi.c']
bonjour_link_args = []
endif
if DYNAMIC_BONJOUR
bonjour_prpl = shared_library('bonjour', BONJOURSOURCES,
link_args : bonjour_link_args,
dependencies : [libxml, avahi, libpurple_dep, glib, ws2_32],
install : true, install_dir : PURPLE_PLUGINDIR)
endif