summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/wayland/wayland
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2016-11-08 09:57:58 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-15 15:19:54 +0000
commitac0d917b67ff3a180986fa234c44c14a0cb38c63 (patch)
treeae8220bcf99ce374814f43d609a4cad62a7308cb /meta/recipes-graphics/wayland/wayland
parent2ef30ef6243cf26b16809aefe445e67c86a48634 (diff)
downloadpoky-ac0d917b67ff3a180986fa234c44c14a0cb38c63.tar.gz
wayland: upgrade from 1.11.1 to 1.12.0
* Remove 0001-scanner-Use-unit32_t-instead-of-uint.patch applied upstream https://cgit.freedesktop.org/wayland/wayland/commit/?id=6750b47d9e0d30 * Update release tarball md5sum/sha256sum (From OE-Core rev: 7812e6e5b0c8f4e0bb289d87f9fa9e0748390edf) Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org> Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/wayland/wayland')
-rw-r--r--meta/recipes-graphics/wayland/wayland/0001-scanner-Use-unit32_t-instead-of-uint.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-graphics/wayland/wayland/0001-scanner-Use-unit32_t-instead-of-uint.patch b/meta/recipes-graphics/wayland/wayland/0001-scanner-Use-unit32_t-instead-of-uint.patch
deleted file mode 100644
index ef41b79c5a..0000000000
--- a/meta/recipes-graphics/wayland/wayland/0001-scanner-Use-unit32_t-instead-of-uint.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From 5516d32e694badca35b6c71b02a3f08f650308bf Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 15 Jul 2016 16:23:48 -0700
4Subject: [PATCH] scanner: Use unit32_t instead of uint
5
6uint32_t is C99 defined stdint type
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
10Upstream-Status: Submitted
11---
12 src/scanner.c | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/src/scanner.c b/src/scanner.c
16index 5f06e8e..10a4023 100644
17--- a/src/scanner.c
18+++ b/src/scanner.c
19@@ -812,7 +812,7 @@ find_enumeration(struct protocol *protocol,
20 struct interface *i;
21 struct enumeration *e;
22 char *enum_name;
23- uint idx = 0, j;
24+ uint32_t idx = 0, j;
25
26 for (j = 0; j + 1 < strlen(enum_attribute); j++) {
27 if (enum_attribute[j] == '.') {
28--
292.1.4
30