diff options
author | Alexey Brodkin <Alexey.Brodkin@synopsys.com> | 2018-04-16 19:25:26 +0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-17 08:55:03 +0200 |
commit | 8efd0756a724cea096f089aaf036ee82036321ad (patch) | |
tree | 49fcfbcf527f87cc0293cd75a12fc78515da261f /package/weston/0002-shared-struct-timespec-is-in-time.h.patch | |
parent | a20320f4c6be1d51aa3a48596148a5bd8fb52356 (diff) | |
download | buildroot-8efd0756a724cea096f089aaf036ee82036321ad.tar.gz buildroot-8efd0756a724cea096f089aaf036ee82036321ad.zip |
package/weston: Bump version to 4.0.0
Added all hashes provided by upstream.
Yann's patch was integrated in upstream, see:
https://cgit.freedesktop.org/wayland/weston/commit/?id=fa41bdfbc
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/weston/0002-shared-struct-timespec-is-in-time.h.patch')
-rw-r--r-- | package/weston/0002-shared-struct-timespec-is-in-time.h.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/package/weston/0002-shared-struct-timespec-is-in-time.h.patch b/package/weston/0002-shared-struct-timespec-is-in-time.h.patch deleted file mode 100644 index 28476d3225..0000000000 --- a/package/weston/0002-shared-struct-timespec-is-in-time.h.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 47535b50c4178d62b848b3e9d3524e4f6282c815 Mon Sep 17 00:00:00 2001 -From: "Yann E. MORIN" <yann.morin.1998@free.fr> -Date: Sun, 1 Oct 2017 14:17:21 +0200 -Subject: [PATCH] shared: struct timespec is in time.h -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -On the musl C library, tests/timespec-text.c does not build, with the -following error: - - In file included from tests/timespec-test.c:36:0: - ./shared/timespec-util.h:41:21: warning: ‘struct timespec’ declared - inside parameter list will not be visible outside of this definition - or declaration - timespec_sub(struct timespec *r, - ^~~~~~~~ - [...] - -Indeed, struct timespec is defined in time.h, so we must include it. - -Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> ---- -Upstream status: submitted - https://lists.freedesktop.org/archives/wayland-devel/2017-October/035306.html ---- - shared/timespec-util.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/shared/timespec-util.h b/shared/timespec-util.h -index 576b3e8f..34a120ae 100644 ---- a/shared/timespec-util.h -+++ b/shared/timespec-util.h -@@ -28,6 +28,7 @@ - - #include <stdint.h> - #include <assert.h> -+#include <time.h> - - #define NSEC_PER_SEC 1000000000 - --- -2.11.0 - |