From: Matthieu Herrb Date: Sun, 21 Sep 2008 08:56:57 +0000 (+0200) Subject: build fix on big endian OpenBSD architectures. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=33f6dc3c334cc065d7c98d0481be19b208e1837d;p=mesa.git build fix on big endian OpenBSD architectures. --- diff --git a/src/mesa/drivers/dri/mach64/mach64_context.h b/src/mesa/drivers/dri/mach64/mach64_context.h index 55e0618ff80..854751626d0 100644 --- a/src/mesa/drivers/dri/mach64/mach64_context.h +++ b/src/mesa/drivers/dri/mach64/mach64_context.h @@ -294,7 +294,13 @@ extern GLboolean mach64UnbindContext( __DRIcontextPrivate *driContextPriv ); #define LE32_OUT( x, y ) do { *(GLuint *)(x) = (y); } while (0) #define LE32_OUT_FLOAT( x, y ) do { *(GLfloat *)(x) = (y); } while (0) #else +#ifndef __OpenBSD__ #include +#else +#include +#define bswap_32 bswap32 +#endif + #define LE32_IN( x ) bswap_32( *(GLuint *)(x) ) #define LE32_IN_FLOAT( x ) \ ({ \