# HG changeset patch # User Sam Lantinga # Date 1279477414 25200 # Node ID 116f05eb67c7e158b9b1ed59ce57578534eb827d # Parent e4e462f591d7a0020b75033fc82ff9f315ced920 RedHat patch: SDL-1.2.14-byteorder.patch diff -r e4e462f591d7 -r 116f05eb67c7 include/SDL_endian.h --- a/include/SDL_endian.h Sun Jul 18 11:18:36 2010 -0700 +++ b/include/SDL_endian.h Sun Jul 18 11:23:34 2010 -0700 @@ -40,6 +40,10 @@ /*@}*/ #ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */ +#ifdef __linux__ +#include +#define SDL_BYTEORDER __BYTE_ORDER +#else /* __linux __ */ #if defined(__hppa__) || \ defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ (defined(__MIPS__) && defined(__MISPEB__)) || \ @@ -49,6 +53,7 @@ #else #define SDL_BYTEORDER SDL_LIL_ENDIAN #endif +#endif /* __linux __ */ #endif /* !SDL_BYTEORDER */