summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/libhandy/libhandy
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-05-05 07:05:40 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-05 21:17:38 +0100
commitb66f69b0a4c7dc41d8ce8d1fd939fa11c6508e2f (patch)
tree8ea95e69ca8d01af7d13755f1ac12ef9b11e4041 /meta/recipes-gnome/libhandy/libhandy
parentbfac9978003212768b8951864235d5fb07b45021 (diff)
downloadpoky-b66f69b0a4c7dc41d8ce8d1fd939fa11c6508e2f.tar.gz
libhandy: update 1.5.0 -> 1.6.2
Doc generation has been migrated to gi-docgen from gtk-doc. (From OE-Core rev: b6b3ff25ee3bf22d9b3d873924afb53d3fb59ddc) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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