Browse Source

add endian detection for glibc

pull/1089/head
yangfl 6 years ago
parent
commit
4f84d687e4
  1. 2
      libi2pd/I2PEndian.h

2
libi2pd/I2PEndian.h

@ -5,7 +5,7 @@ @@ -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__)

Loading…
Cancel
Save