summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch
diff options
context:
space:
mode:
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.patch17
1 files changed, 17 insertions, 0 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
new file mode 100644
index 0000000000..e4461ef177
--- /dev/null
+++ b/meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch
@@ -0,0 +1,17 @@
1endianness check is OS wide and not specific to libc
2
3Signed-off-by: Khem Raj <raj.khem@gmail.com>
4Upstream-Status: Pending
5Index: mesa-11.1.1/src/gallium/include/pipe/p_config.h
6===================================================================
7--- mesa-11.1.1.orig/src/gallium/include/pipe/p_config.h
8+++ mesa-11.1.1/src/gallium/include/pipe/p_config.h
9@@ -130,7 +130,7 @@
10 * Endian detection.
11 */
12
13-#ifdef __GLIBC__
14+#if defined(__linux__)
15 #include <endian.h>
16
17 #if __BYTE_ORDER == __LITTLE_ENDIAN