libpurple/protocols/sametime/meson.build

Sat, 08 Dec 2018 21:06:37 -0600

author
Mike Ruprecht <cmaiku@gmail.com>
date
Sat, 08 Dec 2018 21:06:37 -0600
changeset 39404
dc8c71a301d0
parent 38458
e665653856ab
child 39523
415b0705e48b
permissions
-rw-r--r--

libpurple: Drop capability to statically build prpls

The static building of protocol plugins has been completely broken
since switching to meson. Because of this and the prospect of GPlugin
growing capabilities for limiting allowed plugins, this patch drops
the remaining meson configuration for attempting to support static
protocol plugins.

SAMETIMESOURCES = [
	'sametime.c',
	'sametime.h'
]

if DYNAMIC_SAMETIME
	sametime_prpl = shared_library('sametime', SAMETIMESOURCES,
	    c_args : ['-DG_LOG_DOMAIN="sametime"'],
	    dependencies : [meanwhile, libpurple_dep, glib],
	    install : true, install_dir : PURPLE_PLUGINDIR)
endif

mercurial