From ea2e9195fc241c8fe9f329679d7a424345c68c7b Mon Sep 17 00:00:00 2001 From: Sanjay Ghemawat Date: Thu, 27 Dec 2012 10:38:48 -0800 Subject: added utility to dump leveldb files --- port/port_posix.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'port') diff --git a/port/port_posix.h b/port/port_posix.h index 6ca352e..f2b89bf 100644 --- a/port/port_posix.h +++ b/port/port_posix.h @@ -26,11 +26,17 @@ #include #define PLATFORM_IS_LITTLE_ENDIAN (_BYTE_ORDER == _LITTLE_ENDIAN) #elif defined(OS_OPENBSD) || defined(OS_NETBSD) ||\ - defined(OS_DRAGONFLYBSD) || defined(OS_ANDROID) + defined(OS_DRAGONFLYBSD) #include #include #elif defined(OS_HPUX) #define PLATFORM_IS_LITTLE_ENDIAN false +#elif defined(OS_ANDROID) + // Due to a bug in the NDK x86 definition, + // _BYTE_ORDER must be used instead of __BYTE_ORDER on Android. + // See http://code.google.com/p/android/issues/detail?id=39824 + #include + #define PLATFORM_IS_LITTLE_ENDIAN (_BYTE_ORDER == _LITTLE_ENDIAN) #else #include #endif -- cgit v1.2.1