mirror of
git://git.yoctoproject.org/poky
synced 2026-07-21 08:55:37 +00:00
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>
29 lines
750 B
Diff
29 lines
750 B
Diff
From: Otavio Salvador <otavio@ossystems.com.br>
|
|
Subject: [PATCH] endianness check is OS wide and not specific to libc
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
|
|
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
---
|
|
src/util/u_endian.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/util/u_endian.h b/src/util/u_endian.h
|
|
index 9e09f80181..3148033fae 100644
|
|
--- a/src/util/u_endian.h
|
|
+++ b/src/util/u_endian.h
|
|
@@ -27,7 +27,7 @@
|
|
#ifndef U_ENDIAN_H
|
|
#define U_ENDIAN_H
|
|
|
|
-#if defined(__GLIBC__) || defined(ANDROID) || defined(__CYGWIN__)
|
|
+#if defined(__linux__)
|
|
#include <endian.h>
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
--
|
|
2.15.1
|
|
|