blob: 61b26bb88387ef459bec7f2fb88a77348ed9b8ef [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From 9ccaed380780178c4dab3a681f652ac7cd27452d Mon Sep 17 00:00:00 2001
Brad Bishop316dfdd2018-06-25 12:45:53 -04002From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 4 Aug 2017 16:18:47 +0300
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08004Subject: [PATCH] gobject-introspection: determine g-ir-scanner and
Brad Bishop316dfdd2018-06-25 12:45:53 -04005 g-ir-compiler paths from pkgconfig
6
7Do not hardcode the name of those binaries; gobject-introspection
8provides them via pkgconfig, and they can be set to something else
9(for example when cross-compiling).
10
11Upstream-Status: Pending
12Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
13
14---
Brad Bishop19323692019-04-05 15:28:33 -040015 mesonbuild/modules/gnome.py | 6 +++---
16 1 file changed, 3 insertions(+), 3 deletions(-)
Brad Bishop316dfdd2018-06-25 12:45:53 -040017
18diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
Brad Bishop19323692019-04-05 15:28:33 -040019index 7c5a363..0002498 100644
Brad Bishop316dfdd2018-06-25 12:45:53 -040020--- a/mesonbuild/modules/gnome.py
21+++ b/mesonbuild/modules/gnome.py
Brad Bishop19323692019-04-05 15:28:33 -040022@@ -744,15 +744,15 @@ class GnomeModule(ExtensionModule):
Brad Bishop316dfdd2018-06-25 12:45:53 -040023 if kwargs.get('install_dir'):
24 raise MesonException('install_dir is not supported with generate_gir(), see "install_dir_gir" and "install_dir_typelib"')
Brad Bishop19323692019-04-05 15:28:33 -040025
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080026- giscanner = self.interpreter.find_program_impl('g-ir-scanner')
27- gicompiler = self.interpreter.find_program_impl('g-ir-compiler')
Brad Bishop19323692019-04-05 15:28:33 -040028-
29 girtargets = [self._unwrap_gir_target(arg, state) for arg in args]
30
31 if len(girtargets) > 1 and any([isinstance(el, build.Executable) for el in girtargets]):
32 raise MesonException('generate_gir only accepts a single argument when one of the arguments is an executable')
33
34 self.gir_dep, pkgargs = self._get_gir_dep(state)
35+ giscanner = os.environ['PKG_CONFIG_SYSROOT_DIR'] + self.gir_dep.get_pkgconfig_variable('g_ir_scanner', {})
36+ gicompiler = os.environ['PKG_CONFIG_SYSROOT_DIR'] + self.gir_dep.get_pkgconfig_variable('g_ir_compiler', {})
37+
38
39 ns = kwargs.pop('namespace')
40 nsversion = kwargs.pop('nsversion')