pidgin/plugins/cap/meson.build

Sat, 08 Dec 2018 21:34:48 -0600

author
Mike Ruprecht <cmaiku@gmail.com>
date
Sat, 08 Dec 2018 21:34:48 -0600
changeset 39413
f45e8a9c6fc1
parent 38989
dd7beea88db2
child 39951
e9eaaff671c9
permissions
-rw-r--r--

Remove/edit comments which mention PURPLE_PLUGINS define

Now that GPlugin and libpurple plugin support are both required,
this patch removes mentions of PURPLE_PLUGINS from documentation
and comments in example plugins/code.

#######################################################################
# Check for libsqlite3 (for the Contact Availability Prediction plugin)
#######################################################################
SQLITE3 = dependency('sqlite3', version : '>= 3.3', required : force_deps)

if PLUGINS and SQLITE3.found()
	cap = library('cap', 'cap.c', 'cap.h', 'cap_statistics.h',
	    dependencies : [SQLITE3, libpurple_dep, libpidgin_dep, glib],
	    name_prefix : '',
	    install : true, install_dir : PIDGIN_PLUGINDIR)
endif

mercurial