changeset 4551:a5865d4b6495 SDL-1.2

RedHat patch: SDL-1.2.14-byteorder.patch
author Sam Lantinga <slouken@libsdl.org>
date Sun, 18 Jul 2010 11:22:47 -0700
parents 963f939494a1
children a1af511bbbdd
files include/SDL_endian.h
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/include/SDL_endian.h	Sun Jul 18 11:12:27 2010 -0700
+++ b/include/SDL_endian.h	Sun Jul 18 11:22:47 2010 -0700
@@ -39,6 +39,10 @@
 /*@}*/
 
 #ifndef SDL_BYTEORDER	/* Not defined in SDL_config.h? */
+#ifdef __linux__
+#include <endian.h>
+#define SDL_BYTEORDER  __BYTE_ORDER
+#else /* __linux __ */
 #if defined(__hppa__) || \
     defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \
     (defined(__MIPS__) && defined(__MISPEB__)) || \
@@ -48,6 +52,7 @@
 #else
 #define SDL_BYTEORDER	SDL_LIL_ENDIAN
 #endif
+#endif /* __linux __ */
 #endif /* !SDL_BYTEORDER */