summaryrefslogtreecommitdiffstats
path: root/graphics/libGL/files-old/patch-mach64_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/libGL/files-old/patch-mach64_context.h')
-rw-r--r--graphics/libGL/files-old/patch-mach64_context.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/libGL/files-old/patch-mach64_context.h b/graphics/libGL/files-old/patch-mach64_context.h
new file mode 100644
index 0000000..9e3b38e
--- /dev/null
+++ b/graphics/libGL/files-old/patch-mach64_context.h
@@ -0,0 +1,20 @@
+--- src/mesa/drivers/dri/mach64/mach64_context.h.orig 2012-06-27 19:59:32.000000000 +0200
++++ src/mesa/drivers/dri/mach64/mach64_context.h 2012-06-27 20:08:30.000000000 +0200
+@@ -294,11 +294,14 @@
+ #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 <byteswap.h>
+-#else
++#if defined(__OpenBSD__)
+ #include <machine/endian.h>
+ #define bswap_32 bswap32
++#elif defined(__FreeBSD__)
++#include <sys/endian.h>
++#define bswap_32 bswap32
++#else
++#include <byteswap.h>
+ #endif
+
+ #define LE32_IN( x ) bswap_32( *(GLuint *)(x) )