summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2017-12-29 10:38:04 -0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-03 09:26:37 +0000
commitb38f910e1cef12a03cd736c85d99874d47a4a2ab (patch)
tree555fa7a8cea9c919c0e848a5b0480ae16aa19962 /meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch
parent56be88fcd45ef308bcc7b65254a625bd7a3511b1 (diff)
downloadpoky-b38f910e1cef12a03cd736c85d99874d47a4a2ab.tar.gz
mesa: Upgrade to 17.3.1 release
The 17.3.1 release, published in December 21, 2017, is the first 17.3 stable release for use. It fixes a number of issues since 17.3.0 release. The release notes can be seen at: - 17.3.0: https://www.mesa3d.org/relnotes/17.3.0.html - 17.3.1: https://www.mesa3d.org/relnotes/17.3.1.html This commit has reworked few patches, to apply to the new source, and dropped the backported ones. (From OE-Core rev: 75ec119eabb625509121a329b8d0f9c3cf20e0aa) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch')
-rw-r--r--meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch12
1 files changed, 7 insertions, 5 deletions
diff --git a/meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch b/meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch
index 0280ee8599..98f910f89f 100644
--- a/meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch
+++ b/meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch
@@ -1,26 +1,28 @@
1endianness check is OS wide and not specific to libc 1From: Otavio Salvador <otavio@ossystems.com.br>
2Subject: [PATCH] endianness check is OS wide and not specific to libc
2 3
3Signed-off-by: Khem Raj <raj.khem@gmail.com>
4Upstream-Status: Pending 4Upstream-Status: Pending
5 5
6Signed-off-by: Khem Raj <raj.khem@gmail.com>
6Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> 7Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
8Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
7--- 9---
8 src/util/u_endian.h | 2 +- 10 src/util/u_endian.h | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-) 11 1 file changed, 1 insertion(+), 1 deletion(-)
10 12
11diff --git a/src/util/u_endian.h b/src/util/u_endian.h 13diff --git a/src/util/u_endian.h b/src/util/u_endian.h
12index b9d563d..2d5eab9 100644 14index 9e09f80181..3148033fae 100644
13--- a/src/util/u_endian.h 15--- a/src/util/u_endian.h
14+++ b/src/util/u_endian.h 16+++ b/src/util/u_endian.h
15@@ -27,7 +27,7 @@ 17@@ -27,7 +27,7 @@
16 #ifndef U_ENDIAN_H 18 #ifndef U_ENDIAN_H
17 #define U_ENDIAN_H 19 #define U_ENDIAN_H
18 20
19-#if defined(__GLIBC__) || defined(ANDROID) 21-#if defined(__GLIBC__) || defined(ANDROID) || defined(__CYGWIN__)
20+#if defined(__linux__) 22+#if defined(__linux__)
21 #include <endian.h> 23 #include <endian.h>
22 24
23 #if __BYTE_ORDER == __LITTLE_ENDIAN 25 #if __BYTE_ORDER == __LITTLE_ENDIAN
24-- 26--
252.1.4 272.15.1
26 28