dep/minizip: Don't define 64-bit file macros on Android

Doesn't compile with current NDKs otherwise.
This commit is contained in:
Connor McLaughlin 2021-01-14 13:43:08 +10:00
parent 02948f988d
commit 901f862737
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
#ifndef _ZLIBIOAPI64_H
#define _ZLIBIOAPI64_H
#if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__))
#if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__)) && !(defined(__ANDROID__))
// Linux needs this to support file operation on files larger then 4+GB
// But might need better if/def to select just the platforms that needs them.