From 191e1bcf50cf9a76c9f11cc13521844a59b7e385 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 14 Apr 2014 12:53:32 +0200 Subject: [PATCH 2/2] predef: Fix endianness detection for Android Signed-off-by: Michael Stahl --- include/boost/predef/other/endian.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/predef/other/endian.h b/include/boost/predef/other/endian.h index bfb00f3..12f3d85 100644 --- a/include/boost/predef/other/endian.h +++ b/include/boost/predef/other/endian.h @@ -53,7 +53,7 @@ information and acquired knowledge: */ #if !BOOST_ENDIAN_BIG_BYTE && !BOOST_ENDIAN_BIG_WORD && \ !BOOST_ENDIAN_LITTLE_BYTE && !BOOST_ENDIAN_LITTLE_WORD -# if BOOST_LIB_C_GNU +# if BOOST_LIB_C_GNU || defined(__ANDROID__) # include # else # if BOOST_OS_MACOS -- 1.8.3.1