]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
849bb9d3165e1e11318b9d531a1433442c9539fd
[thirdparty/openembedded/openembedded-core-contrib.git] /
1 From 293452c963188666dae99521294f09a0cf9582e2 Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex.kanavin@gmail.com>
3 Date: Fri, 4 Aug 2017 16:01:11 +0300
4 Subject: [PATCH] Do not disable gobject introspection when cross-compiling.
5
6 Introspection does work fine for instance in Open Embedded,
7 one of the most prominent cross-compilation frameworks
8 (through qemu emulating target hardware), so let the user
9 decide if he wants the feature or not.
10
11 Upstream-Status: Pending
12 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
13 ---
14 meson.build | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/meson.build b/meson.build
18 index 43cbfd9..8a32f26 100644
19 --- a/meson.build
20 +++ b/meson.build
21 @@ -147,7 +147,7 @@ root_dir = include_directories('.')
22
23 gnome = import('gnome')
24 gir = find_program('g-ir-scanner', required: false)
25 -build_gir = gir.found() and not meson.is_cross_build() and not get_option('disable_introspection')
26 +build_gir = gir.found() and not get_option('disable_introspection')
27
28 subdir('json-glib')
29
30 --
31 2.13.2
32