pidgin/purple-plugin-pack

Add talkfilters plugin to build.
meson
2017-06-25, Elliott Sales de Andrade
566b1bda80ae
Parents efeff1984139
Children 4df15c9fd670
Add talkfilters plugin to build.

Not sure if this works though.
--- a/meson.build Sun Jun 25 00:56:46 2017 -0400
+++ b/meson.build Sun Jun 25 02:45:16 2017 -0400
@@ -105,6 +105,7 @@
if HAVE_TALKFILTERS
# work out that the library exists
TALKFILTERS = compiler.find_library('talkfilters')
+ HAVE_TALKFILTERS = TALKFILTERS.found()
endif
#######################################################################
@@ -229,6 +230,7 @@
subdir('sslinfo')
subdir('stocker')
subdir('switchspell')
+subdir('talkfilters')
subdir('timelog')
subdir('translate')
subdir('xchat-chats')
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/talkfilters/meson.build Sun Jun 25 02:45:16 2017 -0400
@@ -0,0 +1,9 @@
+if TYPES.contains('default') and PIDGIN.found() and HAVE_TALKFILTERS
+ talkfilters = shared_module('talkfilters',
+ 'talkfilters.c',
+ dependencies : [TALKFILTERS, PIDGIN, GTK],
+ name_prefix : '',
+ install : true,
+ install_dir : PIDGIN_LIBDIR)
+ PP_PIDGIN_BUILD += 'talkfilters'
+endif