summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/libhandy/libhandy
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-gnome/libhandy/libhandy')
-rw-r--r--meta/recipes-gnome/libhandy/libhandy/0001-Add-private-headers.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-gnome/libhandy/libhandy/0001-Add-private-headers.patch b/meta/recipes-gnome/libhandy/libhandy/0001-Add-private-headers.patch
deleted file mode 100644
index 7b2a512738..0000000000
--- a/meta/recipes-gnome/libhandy/libhandy/0001-Add-private-headers.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From e7c3e8fa00f6a68b2e0629db5ee115e641ea710e Mon Sep 17 00:00:00 2001
2From: Mingli Yu <mingli.yu@windriver.com>
3Date: Wed, 8 Dec 2021 07:35:52 +0000
4Subject: [PATCH] Add private headers
5
6After the commit(8157ecc Separate public and private enums) introduced,
7there comes a race as below:
8 | In file included from ../git/src/hdy-settings.c:11:
9 | ../git/src/hdy-settings-private.h:16:10: fatal error: hdy-enums-private.h: No such file or directory
10 | 16 | #include "hdy-enums-private.h"
11
12So also add private headers like private sources to libhandy_sources to
13fix the issue.
14
15Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/libhandy/-/merge_requests/796]
16
17Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
18---
19 src/meson.build | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22diff --git a/src/meson.build b/src/meson.build
23index d087323..6f11f27 100644
24--- a/src/meson.build
25+++ b/src/meson.build
26@@ -64,7 +64,7 @@ hdy_private_enums = gnome.mkenums('hdy-enums-private',
27 )
28
29 libhandy_public_sources += [hdy_public_enums[0]]
30-libhandy_private_sources += [hdy_private_enums[0]]
31+libhandy_private_sources += hdy_private_enums
32 libhandy_generated_headers += [hdy_public_enums[1]]
33
34 src_headers = [
35--
362.32.0
37