[gnome-shell/wip/fmuellner/fix-gir-includes: 2/2] shell: Fix list of GIR includes



commit a88f471e49d7bc6fe2188809ea74948f15bf04f3
Author: Florian Müllner <fmuellner gnome org>
Date:   Fri Sep 14 23:14:33 2018 +0200

    shell: Fix list of GIR includes
    
    gjs now relies entirely on introspection data to determine parent
    types and implemented interfaces, so in order to have all methods
    and properties resolve correctly, we must include the corresponding
    GIRs of all types used.
    
    https://gitlab.gnome.org/GNOME/gnome-shell/issues/574

 src/meson.build | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/src/meson.build b/src/meson.build
index a67a02642..2045bab82 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -223,7 +223,9 @@ libshell_dep = declare_dependency(link_with: libshell)
 libshell_gir_includes = [
   'Clutter-@0@'.format(mutter_api_version),
   'ClutterX11-@0@'.format(mutter_api_version),
-  'Meta-@0@'.format(mutter_api_version)
+  'Meta-@0@'.format(mutter_api_version),
+  'Gcr-3',
+  'PolkitAgent-1.0'
 ]
 
 if have_networkmanager


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]