pidgin/pidgin

Fix some GWarnings during finch's startup

21 months ago, Gary Kramlich
01b94846bb60
Fix some GWarnings during finch's startup

Testing Done:
Ran via `G_DEBUG=fatal-warnings gdb --ex run finch3` and verified I was able to make it to the contact list.

Reviewed at https://reviews.imfreedom.org/r/1592/
SAMETIME_SOURCES = [
'sametime.c',
'sametime.h',
'im_mime.c',
'im_mime.h',
]
if DYNAMIC_SAMETIME
sametime_resources = gnome.compile_resources('sametimeresource',
'resources/sametime.gresource.xml',
source_dir : 'resources',
c_name : 'sametime')
SAMETIME_SOURCES += sametime_resources
sametime_prpl = shared_library('sametime', SAMETIME_SOURCES,
c_args : ['-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="Purple-Sametime"'],
dependencies : [meanwhile, gmime, libpurple_dep, glib],
install : true, install_dir : PURPLE_PLUGINDIR)
devenv.append('PURPLE_PLUGIN_PATH', meson.current_build_dir())
subdir('tests')
endif