From 839158ffd5d4c4f27572185d755fd8f957f478e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Tue, 27 Feb 2024 10:34:16 +0100 Subject: [PATCH] build/meta: Add explicit dependency on Gio-2.0 gir We depend on Gio for many introspection features (GSettings, GFile...) without this we'd end up not having many symbols being exposed. And errors such as Warning: Meta: meta_display_add_keybinding: argument settings: Unresolved type: 'GSettings*' As per previous commit we now have this dependency implicitly, but still it's better to make it clearer in case Clutter would drop it. Part-of: --- src/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/meson.build b/src/meson.build index 47ee8f570..238445a7b 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1265,6 +1265,7 @@ if have_introspection namespace: 'Meta', symbol_prefix: 'meta', includes: [ + 'Gio-2.0', 'GObject-2.0', 'GDesktopEnums-3.0', 'xlib-2.0',