From: Jeremy Huddleston Date: Sun, 31 Jul 2011 16:31:48 +0000 (-0700) Subject: darwin: Use machine/endian.h to determine endianness X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b3c7199830b8eaac4df2f8c3f10d0e89b4bd5c5;p=mesa.git darwin: Use machine/endian.h to determine endianness Signed-off-by: Jeremy Huddleston --- diff --git a/src/gallium/include/pipe/p_config.h b/src/gallium/include/pipe/p_config.h index 803b806592c..8a5d892c884 100644 --- a/src/gallium/include/pipe/p_config.h +++ b/src/gallium/include/pipe/p_config.h @@ -120,6 +120,15 @@ # define PIPE_ARCH_BIG_ENDIAN #endif +#elif defined(__APPLE__) +#include + +#if __DARWIN_BYTE_ORDER == __DARWIN_LITTLE_ENDIAN +# define PIPE_ARCH_LITTLE_ENDIAN +#elif __DARWIN_BYTE_ORDER == __DARWIN_BIG_ENDIAN +# define PIPE_ARCH_BIG_ENDIAN +#endif + #else #if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)