Module: Mesa Branch: master Commit: 40214267aba2f357eb3334eb8235504ccb93035a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=40214267aba2f357eb3334eb8235504ccb93035a
Author: Jonathan Gray <[email protected]> Date: Mon Mar 10 08:54:43 2014 -0600 gallium: add endian detection for OpenBSD Cc: "10.0" "10.1" <[email protected]> Reviewed-by: Brian Paul <[email protected]> --- src/gallium/include/pipe/p_config.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/gallium/include/pipe/p_config.h b/src/gallium/include/pipe/p_config.h index d603681..b5e7736 100644 --- a/src/gallium/include/pipe/p_config.h +++ b/src/gallium/include/pipe/p_config.h @@ -157,6 +157,16 @@ # define PIPE_ARCH_BIG_ENDIAN #endif +#elif defined(__OpenBSD__) +#include <sys/types.h> +#include <machine/endian.h> + +#if _BYTE_ORDER == _LITTLE_ENDIAN +# define PIPE_ARCH_LITTLE_ENDIAN +#elif _BYTE_ORDER == _BIG_ENDIAN +# define PIPE_ARCH_BIG_ENDIAN +#endif + #else #if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64) || defined(PIPE_ARCH_ARM) || defined(PIPE_ARCH_AARCH64) _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
