Added additional platform check for __ANDROID__.

The macro ANDROID was deprecated with "android-ndk-1.6_r1".
This commit is contained in:
Philipp Wiesemann 2014-02-02 20:55:42 +01:00
parent 58edac3e69
commit 9ee68e8f8d
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@
#undef __LINUX__ #undef __LINUX__
#define __LINUX__ 1 #define __LINUX__ 1
#endif #endif
#if defined(ANDROID) #if defined(ANDROID) || defined(__ANDROID__)
#undef __ANDROID__ #undef __ANDROID__
#undef __LINUX__ /* do we need to do this? */ #undef __LINUX__ /* do we need to do this? */
#define __ANDROID__ 1 #define __ANDROID__ 1