Commit 21760bc6 authored by Sam Lantinga's avatar Sam Lantinga

RedHat patch: SDL-1.2.14-byteorder.patch

parent 5ae90a3b
...@@ -40,6 +40,10 @@ ...@@ -40,6 +40,10 @@
/*@}*/ /*@}*/
#ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */ #ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */
#ifdef __linux__
#include <endian.h>
#define SDL_BYTEORDER __BYTE_ORDER
#else /* __linux __ */
#if defined(__hppa__) || \ #if defined(__hppa__) || \
defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \
(defined(__MIPS__) && defined(__MISPEB__)) || \ (defined(__MIPS__) && defined(__MISPEB__)) || \
...@@ -49,6 +53,7 @@ ...@@ -49,6 +53,7 @@
#else #else
#define SDL_BYTEORDER SDL_LIL_ENDIAN #define SDL_BYTEORDER SDL_LIL_ENDIAN
#endif #endif
#endif /* __linux __ */
#endif /* !SDL_BYTEORDER */ #endif /* !SDL_BYTEORDER */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment