pidgin/pidgin

Use GSubprocess to manager zephyr tzc command.

2020-11-21, Elliott Sales de Andrade
16bba33a970f
Use GSubprocess to manager zephyr tzc command.

This is a straight conversion, and does not make any attempt to be more asynchronous, as I don't know the protocol between them, but I expect there are ways to reduce the blocking.

Testing Done:
Compile only.

Reviewed at https://reviews.imfreedom.org/r/247/
if PLUGINS
subdir('kwallet')
if nettle.found()
internalkeyring_plugin = library('internalkeyring', 'internalkeyring.c',
dependencies : [nettle, libpurple_dep],
name_prefix : '',
install : true, install_dir : PURPLE_PLUGINDIR)
endif
if secretservice.found()
secretsservice_plugin = library('secretservice', 'secretservice.c',
dependencies : [secretservice, libpurple_dep],
name_prefix : '',
install : true, install_dir : PURPLE_PLUGINDIR)
endif
if IS_WIN32
wincred_plugin = library('wincred', 'wincred.c',
dependencies : [libpurple_dep],
name_prefix : '',
install : true, install_dir : PURPLE_PLUGINDIR)
endif
endif # PLUGINS