upgpkg: wordpress 6.2.1-1
[ArchLinux/community.git] / spice-gtk / trunk / remove-gobject-introspection-dep.patch
blob962b4d15b25163748b04628df5861e2066d6ee1c
1 From 3bd8aac326714ed3641a66793b69d9355818df1a Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= <ballogyor@gmail.com>
3 Date: Tue, 7 Mar 2023 14:00:25 +0000
4 Subject: [PATCH] Remove dependency on gobject-introspection-1.0
6 The library and header files of gobject-introspection-1.0 are not used by spice-gtk itself. Only the 'g-ir-scanner' and 'g-ir-compiler' tools are used during the build. Adding it as dependency to library and pkgconfig file is not needed.
7 ---
8 meson.build | 1 -
9 1 file changed, 1 deletion(-)
11 diff --git a/meson.build b/meson.build
12 index 341f5fb5..44017e55 100644
13 --- a/meson.build
14 +++ b/meson.build
15 @@ -345,7 +345,6 @@ summary_info += {'coroutine': spice_gtk_coroutine}
16 spice_gtk_has_introspection = false
17 d = dependency('gobject-introspection-1.0', version : '>= 0.94', required : get_option('introspection'))
18 if d.found()
19 - spice_glib_deps += d
20 spice_gtk_has_introspection = true
21 endif
22 summary_info += {'introspection': spice_gtk_has_introspection}
23 --
24 GitLab