summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/files
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2017-06-20 18:10:28 -0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-28 15:52:18 +0100
commitd6b997841f850681bf383d61bc76bff69bb3a630 (patch)
treefa72717d3572fb097405a836f42c6ffc72f3ca67 /meta/recipes-graphics/mesa/files
parent6b66daaf93f603f5753ed656fe032411bd36d701 (diff)
downloadpoky-d6b997841f850681bf383d61bc76bff69bb3a630.tar.gz
mesa: Update to 17.1.3 release
17.1.2 release includes fixes for: Bug 98833 - [REGRESSION, bisected] Wayland revert commit breaks non-Vsync fullscreen frame updates Bug 100741 - Chromium - Memory leak Bug 100877 - vulkan/tests/block_pool_no_free regression Bug 101110 - Build failure in GNOME Continuous 17.1.3 release includes fixes for: Bug 100988 - glXGetCurrentDisplay() no longer works for FakeGLX contexts? The 17.1.3 release includes the "util/rand_xor: add missing include statements" which is now merged upstream (thanks Nicolas Dechesne); the referred patch is then dropped from the recipe. (From OE-Core rev: a7417bab21d0fbe0746d9e2b840aa2d576149639) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/files')
-rw-r--r--meta/recipes-graphics/mesa/files/0001-util-rand_xor-add-missing-include-statements.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/meta/recipes-graphics/mesa/files/0001-util-rand_xor-add-missing-include-statements.patch b/meta/recipes-graphics/mesa/files/0001-util-rand_xor-add-missing-include-statements.patch
deleted file mode 100644
index ffe8b96163..0000000000
--- a/meta/recipes-graphics/mesa/files/0001-util-rand_xor-add-missing-include-statements.patch
+++ /dev/null
@@ -1,35 +0,0 @@
1From a8a1081ec05634e667d6670ab7c128d536cc60a9 Mon Sep 17 00:00:00 2001
2From: Nicolas Dechesne <nicolas.dechesne@linaro.org>
3Date: Thu, 1 Jun 2017 11:59:42 +0200
4Subject: [PATCH] util/rand_xor: add missing include statements
5
6Fixes for:
7
8src/util/rand_xor.c:60:13: error: implicit declaration of function 'open' [-Werror=implicit-function-declaration]
9 int fd = open("/dev/urandom", O_RDONLY);
10 ^~~~
11src/util/rand_xor.c:60:34: error: 'O_RDONLY' undeclared (first use in this function)
12 int fd = open("/dev/urandom", O_RDONLY);
13 ^~~~~~~~
14
15Upstream-Status: Submitted [ https://lists.freedesktop.org/archives/mesa-dev/2017-June/157542.html ]
16Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
17---
18 src/util/rand_xor.c | 1 +
19 1 file changed, 1 insertion(+)
20
21diff --git a/src/util/rand_xor.c b/src/util/rand_xor.c
22index de05fa64b3..de04bbc284 100644
23--- a/src/util/rand_xor.c
24+++ b/src/util/rand_xor.c
25@@ -25,6 +25,7 @@
26 #if defined(__linux__)
27 #include <sys/file.h>
28 #include <unistd.h>
29+#include <fcntl.h>
30 #else
31 #include <time.h>
32 #endif
33--
342.13.0
35