
# HG changeset patch
# User Gary Kramlich <grim@reaperworld.com>
# Date 1718221530 18000
# Node ID f92923c3ccbe7d469cfd0cce809a9998351ec737
# Parent  a36d64781eec4617589d2d8b7d21a82cf7850d14
Disable gplugin-introspection by default

This has had issues for awhile and causes build failures which is potentially
masking other errors/warnings. Also this isn't currently used by and down
streams, so it makes sense to turn it off until it is worthwhile to figure it
out.

Testing Done:
Ran a build and verified the warnings related to gplugin-introspection were gone.

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

diff -r a36d64781eec -r f92923c3ccbe gplugin-introspection/meson.build
--- a/gplugin-introspection/meson.build	Mon Jun 10 20:18:14 2024 -0500
+++ b/gplugin-introspection/meson.build	Wed Jun 12 14:45:30 2024 -0500
@@ -1,4 +1,4 @@
-if not get_option('introspection')
+if not get_option('introspection') or not get_option('gplugin-introspection')
 	subdir_done()
 endif
 
diff -r a36d64781eec -r f92923c3ccbe meson_options.txt
--- a/meson_options.txt	Mon Jun 10 20:18:14 2024 -0500
+++ b/meson_options.txt	Wed Jun 12 14:45:30 2024 -0500
@@ -5,6 +5,13 @@
 )
 
 option(
+	'gplugin-introspection',
+	type : 'boolean',
+	value : false,
+	description : 'Whether or not to build the GPlugin introspection library.',
+)
+
+option(
 	'introspection',
 	type : 'boolean', value : true, yield : true,
 	description : 'Whether or not to build a GObject Introspection type library'

