diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-07-25 11:35:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-25 11:35:08 +0200 |
commit | 7cbe12725ea675395fb38f1aaef2969ed8b66f67 (patch) | |
tree | d6e363e7152da20404043699f000742064fea8e7 | |
parent | 303370d03d71ad7ea194250fdfc94f7f1928fb47 (diff) | |
parent | 6ea233434ade064c07db0cfa8ba9e8dcc4442154 (diff) |
Merge pull request #9825 from RandomShaper/rename-android-define
Remove ANDROID define
-rw-r--r-- | platform/android/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 55b7052393..fae1df3f27 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -178,7 +178,7 @@ def configure(env): env.Append(CPPFLAGS=["-isystem", sysroot + "/usr/include"]) env.Append(CPPFLAGS=string.split('-fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fvisibility=hidden -fno-strict-aliasing')) - env.Append(CPPFLAGS=string.split('-DANDROID -DNO_STATVFS -DGLES2_ENABLED')) + env.Append(CPPFLAGS=string.split('-DNO_STATVFS -DGLES2_ENABLED')) env['neon_enabled'] = False if env['android_arch'] == 'x86': |