diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-14 18:21:23 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-14 18:21:23 +0200 |
commit | f63bf12193deaf9cae5b1d6c7289afc17a7de946 (patch) | |
tree | e0be9be96c47e96d0370acdf00c34a15e4b23053 /platform/android/detect.py | |
parent | 292132ef6b4a909e320e74170037c8c591ffeea4 (diff) |
Drop nedmalloc which is apparently not used anymore
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r-- | platform/android/detect.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 7e482047c9..8e9a58da19 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -34,10 +34,9 @@ def get_flags(): return [ ('tools', 'no'), - ('nedmalloc', 'no'), ('builtin_zlib', 'no'), - ('openssl','builtin'), #use builtin openssl - ] + ('openssl', 'builtin'), #use builtin openssl + ] def create(env): |