summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libsoup/libsoup-2.4/0001-Do-not-enforce-no-introspection-when-cross-building.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libsoup/libsoup-2.4/0001-Do-not-enforce-no-introspection-when-cross-building.patch')
-rw-r--r--meta/recipes-support/libsoup/libsoup-2.4/0001-Do-not-enforce-no-introspection-when-cross-building.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-support/libsoup/libsoup-2.4/0001-Do-not-enforce-no-introspection-when-cross-building.patch b/meta/recipes-support/libsoup/libsoup-2.4/0001-Do-not-enforce-no-introspection-when-cross-building.patch
deleted file mode 100644
index d534457e72..0000000000
--- a/meta/recipes-support/libsoup/libsoup-2.4/0001-Do-not-enforce-no-introspection-when-cross-building.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1From 85f7b74fc602214297928afe09347c31d696173d Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 15 Feb 2019 14:21:06 +0100
4Subject: [PATCH] Do not enforce no-introspection when cross-building
5
6Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/libsoup/commit/7ef5ec60c33e254bcd915936bea3f04ba0fe2273]
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8Signed-off-by: Alistair Francis <alistair@alistair23.me>
9---
10 meson.build | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/meson.build b/meson.build
14index 25887f9..6261a7c 100644
15--- a/meson.build
16+++ b/meson.build
17@@ -281,7 +281,7 @@ enable_gnome = get_option('gnome') and host_machine.system() != 'windows'
18 # FIXME: once we start to require meson 0.49.0+ and gnome-introspection 1.58.1+
19 # the we can enable the introspection even for the static build. See
20 # https://github.com/mesonbuild/meson/pull/4478.
21-enable_introspection = get_option('introspection') and find_program('g-ir-scanner', required: false).found() and not meson.is_cross_build() and not is_static_library
22+enable_introspection = get_option('introspection') and find_program('g-ir-scanner', required: false).found() and not is_static_library
23
24 ############
25 # Vala API #
26--
272.20.1
28