make endian code work on BSD
authorDave Airlie <airliedfreedesktop.org>
Mon, 7 Jun 2004 00:29:40 +0000 (00:29 +0000)
committerDave Airlie <airliedfreedesktop.org>
Mon, 7 Jun 2004 00:29:40 +0000 (00:29 +0000)
src/mesa/drivers/dri/mach64/mach64_context.h

index e61083f..3d76de7 100644 (file)
@@ -355,7 +355,14 @@ extern GLboolean mach64UnbindContext( __DRIcontextPrivate *driContextPriv );
 /* ================================================================
  * Byte ordering
  */
+#ifdef __linux__
 #include <endian.h>
+#else
+#include <sys/endian.h>
+#define __BYTE_ORDER BYTE_ORDER
+#define __LITTLE_ENDIAN LITTLE_ENDIAN
+#define __BIG_ENDIAN BIG_ENDIAN
+#endif
 
 #if __BYTE_ORDER == __LITTLE_ENDIAN
 #define LE32_IN( x )           ( *(GLuint *)(x) )