Change the introspection option to a boolean so that the subprojects can properly yield to it.

Thu, 08 Oct 2020 03:25:28 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Thu, 08 Oct 2020 03:25:28 -0500
changeset 40546
aa0d59a5c23d
parent 40545
5f512eb3857f
child 40547
86e0c5080a58

Change the introspection option to a boolean so that the subprojects can properly yield to it.

Testing Done:
ninja reconfigure to verify that the error about not being able to yield went away.

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

meson_options.txt file | annotate | diff | comparison | revisions
--- a/meson_options.txt	Wed Oct 07 02:07:56 2020 -0500
+++ b/meson_options.txt	Thu Oct 08 03:25:28 2020 -0500
@@ -10,7 +10,7 @@
 option('glib-errors-trace', type : 'boolean', value : false,
        description : 'print backtraces for glib errors')
 
-option('introspection', type : 'feature',
+option('introspection', type : 'boolean', value : true,
        description : 'build introspection data')
 
 option('nettle', type : 'feature',

mercurial