summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/wayland/weston/fix-missing-header.patch
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2018-04-11 14:03:19 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-04 13:28:04 +0100
commit1b0340b3b888696cb3c0600884686678535a4e5b (patch)
tree9e8b70f1f4a8bcfbe391bb8b2ecda073d584b979 /meta/recipes-graphics/wayland/weston/fix-missing-header.patch
parent8097bf7012a0d97d3b8b48eceb5dc20cc4ae7ca9 (diff)
downloadpoky-1b0340b3b888696cb3c0600884686678535a4e5b.tar.gz
weston: upgrade to 4.0.0
Official announcement: https://lists.freedesktop.org/archives/wayland-devel/2018-April/037768.html Dropped previously backported fix-missing-header.patch and weston-gl-renderer-Set-pitch-correctly-for-subsampled-textures.patch Refresh remaining local patches. Modify 0001-weston-launch-Provide-a-default-version-that-doesn-t.patch with changes to apply against the new code base. Support for libunwind was dropped in bb707dc0fe331c9af112a0552b7aa6fde755dd83: https://cgit.freedesktop.org/wayland/weston/commit/?id=bb707dc0fe331c9af112a0552b7aa6fde755dd83 Extract major version for referring to libweston-4 helper libraries. (From OE-Core rev: 0cc82a9158f58a37865f3ccc56156c987706f735) Signed-off-by: Denys Dmytriyenko <denys@ti.com> 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/weston/fix-missing-header.patch')
-rw-r--r--meta/recipes-graphics/wayland/weston/fix-missing-header.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-graphics/wayland/weston/fix-missing-header.patch b/meta/recipes-graphics/wayland/weston/fix-missing-header.patch
deleted file mode 100644
index 55c0d4fd0f..0000000000
--- a/meta/recipes-graphics/wayland/weston/fix-missing-header.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1On the musl C library, tests/timespec-text.c does not build, with the
2following error:
3
4 In file included from tests/timespec-test.c:36:0:
5 ./shared/timespec-util.h:41:21: warning: ‘struct timespec’ declared
6 inside parameter list will not be visible outside of this definition
7 or declaration
8 timespec_sub(struct timespec *r,
9 ^~~~~~~~
10 [...]
11
12Indeed, struct timespec is defined in time.h, so we must include it.
13
14Upstream-Status: Backport [fa41bdfbc0b962fd73b89f01aab1a5370c9c28eb]
15
16Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
17Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
18
19Index: weston-3.0.0/shared/timespec-util.h
20===================================================================
21--- weston-3.0.0.orig/shared/timespec-util.h
22+++ weston-3.0.0/shared/timespec-util.h
23@@ -28,6 +28,7 @@
24
25 #include <stdint.h>
26 #include <assert.h>
27+#include <time.h>
28
29 #define NSEC_PER_SEC 1000000000
30