Add macos/freebsd missing endian.h include and add win endianness info

This commit is contained in:
qiukeren 2015-12-21 20:52:40 +08:00 committed by est31
parent 1735c20549
commit 848b050a56
1 changed files with 11 additions and 1 deletions

View File

@ -26,7 +26,17 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "config.h"
#if HAVE_ENDIAN_H
#include <endian.h>
#ifdef _WIN32
#define __BYTE_ORDER 0
#define __LITTLE_ENDIAN 0
#define __BIG_ENDIAN 1
#elif defined(__MACH__) && defined(__APPLE__)
#include <machine/endian.h>
#elif defined(__FreeBSD__)
#include <sys/endian.h>
#else
#include <endian.h>
#endif
#endif
#include <string.h> // for memcpy
#include <iostream>