gplugin/gplugin

Disable gplugin-introspection by default
default tip
40 hours ago, Gary Kramlich
f92923c3ccbe
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/
LIBRARIES = [
'super-dependent',
'no-version',
'exact1',
'exact2',
'greater',
'greater-equal',
'less',
'less-equal',
'bar',
'baz',
'fez',
]
plugins = []
foreach lib : LIBRARIES
plugins += shared_library(lib, f'@lib@.c',
name_prefix: '',
gnu_symbol_visibility : 'hidden',
dependencies : [gplugin_dep, GLIB])
endforeach
all_native_test_plugins += {'versioned-dependencies': plugins}