- restore a patch to fix build on ia64

Reported by:	Anton Shterenlikht <mexas@bristol.ac.uk>
This commit is contained in:
Pietro Cerutti 2012-03-07 08:06:23 +00:00
parent 9adf856e2f
commit ffcb4a322c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=292868

View file

@ -0,0 +1,18 @@
--- src/gallium/include/pipe/p_config.h.orig 2012-03-06 13:42:46.000000000 +0100
+++ src/gallium/include/pipe/p_config.h 2012-03-06 13:43:21.000000000 +0100
@@ -120,12 +120,12 @@
# define PIPE_ARCH_BIG_ENDIAN
#endif
-#elif defined(__APPLE__)
+#elif defined(__APPLE__) || defined(__FreeBSD__)
#include <machine/endian.h>
-#if __DARWIN_BYTE_ORDER == __DARWIN_LITTLE_ENDIAN
+#if __DARWIN_BYTE_ORDER == __DARWIN_LITTLE_ENDIAN || _BYTE_ORDER == _LITTLE_ENDIAN
# define PIPE_ARCH_LITTLE_ENDIAN
-#elif __DARWIN_BYTE_ORDER == __DARWIN_BIG_ENDIAN
+#elif __DARWIN_BYTE_ORDER == __DARWIN_BIG_ENDIAN || _BYTE_ORDER == _BIG_ENDIAN
# define PIPE_ARCH_BIG_ENDIAN
#endif