Commit dece536b authored by Paul Hunkin's avatar Paul Hunkin

Initial commit, adding __ANDROID__ to the platform list

parent d12afdae
...@@ -65,6 +65,13 @@ ...@@ -65,6 +65,13 @@
#undef __LINUX__ #undef __LINUX__
#define __LINUX__ 1 #define __LINUX__ 1
#endif #endif
#if defined(ANDROID)
#undef __ANDROID__
#undef __LINUX__ //do we need to do this?
#define __ANDROID__ 1
#endif
#if defined(__APPLE__) #if defined(__APPLE__)
/* lets us know what version of Mac OS X we're compiling on */ /* lets us know what version of Mac OS X we're compiling on */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment