From b759afa08e339126c4e8b7e2aa87ed0c9f4b5d0d Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 26 Feb 2016 06:48:00 +0000 Subject: mesa: Fix build on musl It assumes __GLIBC__ where it could actually check for linux and include non-glibc C library implementations like musl which provide __BYTE_ORDER macros as well when computing system endianness Signed-off-by: Khem Raj Signed-off-by: Ross Burton --- .../mesa/files/replace_glibc_check_with_linux.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 meta/recipes-graphics/mesa/files/replace_glibc_check_with_linux.patch (limited to 'meta/recipes-graphics/mesa/files') 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 @@ +endianness check is OS wide and not specific to libc + +Signed-off-by: Khem Raj +Upstream-Status: Pending +Index: mesa-11.1.1/src/gallium/include/pipe/p_config.h +=================================================================== +--- mesa-11.1.1.orig/src/gallium/include/pipe/p_config.h ++++ mesa-11.1.1/src/gallium/include/pipe/p_config.h +@@ -130,7 +130,7 @@ + * Endian detection. + */ + +-#ifdef __GLIBC__ ++#if defined(__linux__) + #include + + #if __BYTE_ORDER == __LITTLE_ENDIAN -- cgit 1.2.3-korg