summaryrefslogtreecommitdiff
path: root/graphics/mesa/patches/patch-src_util_compiler_h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/mesa/patches/patch-src_util_compiler_h')
-rw-r--r--graphics/mesa/patches/patch-src_util_compiler_h37
1 files changed, 0 insertions, 37 deletions
diff --git a/graphics/mesa/patches/patch-src_util_compiler_h b/graphics/mesa/patches/patch-src_util_compiler_h
deleted file mode 100644
index 17385bc..0000000
--- a/graphics/mesa/patches/patch-src_util_compiler_h
+++ /dev/null
@@ -1,37 +0,0 @@
-Index: src/util/compiler.h
---- src/util/compiler.h.orig
-+++ src/util/compiler.h
-@@ -45,28 +45,16 @@
- * Try to use a runtime test instead.
- * For now, only used by some DRI hardware drivers for color/texel packing.
- */
--#if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
--#if defined(__linux__)
--#include <byteswap.h>
--#define CPU_TO_LE32( x ) bswap_32( x )
--#elif defined(__APPLE__)
--#include <CoreFoundation/CFByteOrder.h>
--#define CPU_TO_LE32( x ) CFSwapInt32HostToLittle( x )
--#elif defined(__OpenBSD__)
--#include <sys/types.h>
-+#ifdef __OpenBSD__
-+#include <endian.h>
- #define CPU_TO_LE32( x ) htole32( x )
--#else /*__linux__ */
--#include <sys/endian.h>
--#define CPU_TO_LE32( x ) bswap32( x )
--#endif /*__linux__*/
-+#define LE32_TO_CPU( x ) letoh32( x )
-+#if BYTE_ORDER == BIG_ENDIAN
- #define MESA_BIG_ENDIAN 1
- #else
--#define CPU_TO_LE32( x ) ( x )
- #define MESA_LITTLE_ENDIAN 1
- #endif
--#define LE32_TO_CPU( x ) CPU_TO_LE32( x )
--
--
-+#endif /* __OpenBSD__ */
-
- #define IEEE_ONE 0x3f800000
-