1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 08:14:15 +00:00

add endian detection for glibc

This commit is contained in:
yangfl 2018-02-03 02:27:22 +08:00
parent fbb9991128
commit 4f84d687e4

View File

@ -5,7 +5,7 @@
#if defined(__FreeBSD__)
#include <sys/endian.h>
#elif defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__)
#elif defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__GLIBC__)
#include <endian.h>
#elif defined(__APPLE__) && defined(__MACH__)