Mon, 23 May 2022 22:00:29 -0500
Update gplugin to 0.38
Testing Done:
Compiled and ran the unit tests.
I did have to `meson --wipe` because `gplugin.h` wasn't being rebuilt properly even after a `meson subprojects update`.
Reviewed at https://reviews.imfreedom.org/r/1468/
| meson.build | file | annotate | diff | comparison | revisions | |
| subprojects/gplugin.wrap | file | annotate | diff | comparison | revisions |
--- a/meson.build Mon May 23 20:29:05 2022 -0500 +++ b/meson.build Mon May 23 22:00:29 2022 -0500 @@ -565,13 +565,14 @@ ####################################################################### # Check for GPlugin ####################################################################### +gplugin_version = ['>=0.38.0', '<0.39.0'] gplugin_dep = dependency('gplugin', - version : ['>=0.37.0', '<0.38.0'], + version : gplugin_version, fallback : ['gplugin', 'gplugin_dep']) if get_option('gtkui') gplugin_gtk_dep = dependency('gplugin-gtk3', - version : ['>=0.37.0', '<0.38.0'], + version : gplugin_version, fallback : ['gplugin-gtk', 'gplugin_gtk3_dep']) endif