pidgin/purple-plugin-pack

c07ac3e8d58b
Merged in rw_grim/purple-plugin-pack (pull request #5)

Apparently option() changed default to be value

Approved-by: Gary Kramlich
if TYPES.contains('incomplete') and PURPLE.found()
executable('recursetest',
'recurse.c',
'recursetest.c')
buddytime = shared_library('buddytime',
'buddytime.c',
# FIXME: I don't think this file should use Pidgin.
dependencies : [PIDGIN, PURPLE, GLIB],
name_prefix : '',
install : true,
install_dir : PURPLE_LIBDIR)
PP_PURPLE_BUILD += 'buddytime'
if PIDGIN.found()
executable('gtktimezonetest',
'gtktimezone.c',
'gtktimezonetest.c',
'recurse.c',
dependencies : GTK)
gtkbuddytime = shared_module('gtkbuddytime',
'gtkbuddytime.c',
dependencies : [PIDGIN, GTK],
name_prefix : '',
install : true,
install_dir : PIDGIN_LIBDIR)
PP_PIDGIN_BUILD += 'gtkbuddytime'
endif
endif