зеркало из https://github.com/github/ruby.git
Fix compilation error in mingw
__LITTLE_ENDIAN is not defined.
This commit is contained in:
Родитель
b57c7be6a9
Коммит
45bcab3c84
11
siphash.c
11
siphash.c
|
@ -5,11 +5,18 @@
|
|||
#define SIP_HASH_STREAMING 1
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
#if defined(__MINGW32__)
|
||||
#include <sys/param.h>
|
||||
|
||||
/* MinGW only defines LITTLE_ENDIAN and BIG_ENDIAN macros */
|
||||
#define __LITTLE_ENDIAN LITTLE_ENDIAN
|
||||
#define __BIG_ENDIAN BIG_ENDIAN
|
||||
#elif defined(_WIN32)
|
||||
#define BYTE_ORDER __LITTLE_ENDIAN
|
||||
#elif !defined BYTE_ORDER
|
||||
#elif !defined(BYTE_ORDER)
|
||||
#include <endian.h>
|
||||
#endif
|
||||
|
||||
#ifndef LITTLE_ENDIAN
|
||||
#define LITTLE_ENDIAN __LITTLE_ENDIAN
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче