diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2012-03-07 08:06:23 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2012-03-07 08:06:23 +0000 |
commit | ffcb4a322ce34e6ce04eef1627020806081e98fc (patch) | |
tree | 60721e6fc9eb0fafa1a125b3aa24468321912d96 | |
parent | 9adf856e2f7671ab86ad20b40a1020ea9ad638c1 (diff) | |
download | ports-ffcb4a322ce34e6ce04eef1627020806081e98fc.tar.gz ports-ffcb4a322ce34e6ce04eef1627020806081e98fc.zip |
- restore a patch to fix build on ia64
Reported by: Anton Shterenlikht <mexas@bristol.ac.uk>
Notes
Notes:
svn path=/head/; revision=292868
-rw-r--r-- | graphics/libosmesa/files/patch-src-gallium-include-pipe_p_config.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/graphics/libosmesa/files/patch-src-gallium-include-pipe_p_config.h b/graphics/libosmesa/files/patch-src-gallium-include-pipe_p_config.h new file mode 100644 index 000000000000..ddc9198d7afe --- /dev/null +++ b/graphics/libosmesa/files/patch-src-gallium-include-pipe_p_config.h @@ -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 + |