diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-09-24 14:28:35 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-09-25 23:16:48 +0200 |
commit | 939e827d924dc73a688ef3c1d235466151d1fd82 (patch) | |
tree | 78cbbd543f0215a41e2e2f57a6e21288fa6f123f /package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch | |
parent | c83e8a5a40a8d27295d6352fceabe6da824f9797 (diff) | |
download | buildroot-939e827d924dc73a688ef3c1d235466151d1fd82.tar.gz buildroot-939e827d924dc73a688ef3c1d235466151d1fd82.zip |
wayland: bump to version 1.12.0
And drop upstream patch.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch')
-rw-r--r-- | package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch b/package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch deleted file mode 100644 index 1d05f2589a..0000000000 --- a/package/wayland/0002-scanner-Use-uint32_t-instead-of-uint.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 6750b47d9e0d3074d2e56aa36c476493f533d696 Mon Sep 17 00:00:00 2001 -From: Khem Raj <raj.khem@gmail.com> -Date: Fri, 15 Jul 2016 16:23:48 -0700 -Subject: [PATCH 1/1] scanner: Use uint32_t instead of uint - -uint32_t is C99 defined stdint type - -Signed-off-by: Khem Raj <raj.khem@gmail.com> -Reviewed-by: Daniel Stone <daniels@collabora.com> -[Rahul Bedarkar: Backported from: 6750b47d9e0d3074d2e56aa36c476493f533d696] -Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com> ---- - src/scanner.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/scanner.c b/src/scanner.c -index 6e2c3a3..ebae4cc 100644 ---- a/src/scanner.c -+++ b/src/scanner.c -@@ -819,7 +819,7 @@ find_enumeration(struct protocol *protocol, - struct interface *i; - struct enumeration *e; - char *enum_name; -- uint idx = 0, j; -+ uint32_t idx = 0, j; - - for (j = 0; j + 1 < strlen(enum_attribute); j++) { - if (enum_attribute[j] == '.') { --- -2.6.2 - |