meson: Update plugins option to reflect what it now does

Tue, 15 Jan 2019 18:50:34 -0600

author
Mike Ruprecht <cmaiku@gmail.com>
date
Tue, 15 Jan 2019 18:50:34 -0600
changeset 39416
b117963f4ff8
parent 39415
c76b490124cc
child 39418
37955fedfa75
child 39419
e8e189c88b13

meson: Update plugins option to reflect what it now does

Previously, the 'plugins' option would toggle libpurple plugin
support. Now that libpurple's plugin support is required, the
'plugins' option instead merely toggles building plugins
(including prpls). Ultimately we probably want an option for
toggling the building of plugins and a separate one for prpls,
but that can come later. This patch updates the description of
the 'plugins' option to better reflect what it now does.

meson.build file | annotate | diff | comparison | revisions
meson_options.txt file | annotate | diff | comparison | revisions
--- a/meson.build	Tue Jan 15 16:54:16 2019 -0600
+++ b/meson.build	Tue Jan 15 18:50:34 2019 -0600
@@ -964,7 +964,7 @@
 message('Build with KWallet............ : ' + enable_kwallet.to_string())
 message('Build with Secret Service..... : ' + enable_secret_service.to_string())
 message('')
-message('Build with plugin support..... : ' + PLUGINS.to_string())
+message('Build plugins................. : ' + PLUGINS.to_string())
 message('Enable Introspection...........: ' + enable_introspection.to_string())
 message('')
 message('Print debugging messages...... : ' + enable_debug.to_string())
--- a/meson_options.txt	Tue Jan 15 16:54:16 2019 -0600
+++ b/meson_options.txt	Tue Jan 15 18:50:34 2019 -0600
@@ -60,7 +60,7 @@
        description : 'specify which protocols to build dynamically')
 
 option('plugins', type : 'boolean', value : true,
-       description : 'compile with plugin support')
+       description : 'compile plugins')
 
 option('introspection', type : 'boolean', value : true,
        description : 'build introspection data')

mercurial