sort the meson options by option name

Thu, 16 Jul 2020 21:34:49 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Thu, 16 Jul 2020 21:34:49 -0500
changeset 40491
96402addd5c1
parent 40490
fb6e46c4c63c
child 40492
64f2b2903dd3

sort the meson options by option name

Reviewed at https://reviews.imfreedom.org/r/42/

meson_options.txt file | annotate | diff | comparison | revisions
--- a/meson_options.txt	Thu Jul 16 21:33:23 2020 -0500
+++ b/meson_options.txt	Thu Jul 16 21:34:49 2020 -0500
@@ -1,12 +1,12 @@
 ##############################################################################
 # General Options
 
+option('doc', type : 'boolean', value : false,
+       description : 'build documentation with gtk-doc')
+
 option('extraversion', type : 'string',
        description : 'extra version number to be displayed in Help->About and --help (for packagers)')
 
-option('doc', type : 'boolean', value : false,
-       description : 'build documentation with gtk-doc')
-
 option('glib-errors-trace', type : 'boolean', value : false,
        description : 'print backtraces for glib errors')
 
@@ -49,15 +49,15 @@
 ##############################################################################
 # Protocol Plugins
 
-option('dynamic-prpls', type : 'string', value: 'all',
-       description : 'specify which protocols to build dynamically')
-
 option('avahi', type : 'feature',
        description : 'compile with avahi (required for Bonjour support)')
 
 option('cyrus-sasl', type : 'feature',
        description : 'enable Cyrus SASL support for XMPP/IRC')
 
+option('dynamic-prpls', type : 'string', value: 'all',
+       description : 'specify which protocols to build dynamically')
+
 option('krb4', type : 'boolean', value : false,
        description : 'compile Zephyr plugin with Kerberos 4 support')
 
@@ -76,9 +76,6 @@
 ##############################################################################
 # Pidgin Options
 
-option('gtkui', type : 'boolean', value : true,
-       description : 'compile with GTK+ user interface')
-
 option('cap', type : 'boolean', value : false,
        description : 'compile with Contact Availability Prediction plugin')
 
@@ -91,6 +88,9 @@
 option('gevolution', type : 'feature', value : 'disabled',
        description : 'compile with the Evolution plugin')
 
+option('gtkui', type : 'boolean', value : true,
+       description : 'compile with GTK+ user interface')
+
 option('unity-integration', type : 'feature',
        description : 'compile with support for unity integration plugin')
 

mercurial