Merge pull request #296 from Polynomial-C/master

Don't include internal zip library when USE_MINIZIP is defined.
This commit is contained in:
endrift 2016-07-12 14:03:11 -07:00 committed by GitHub
commit 6f8b4114fc
1 changed files with 4 additions and 0 deletions

View File

@ -34,7 +34,11 @@ enum {
BLOCK_SIZE = 1024
};
#else
#ifdef USE_MINIZIP
#include <minizip/unzip.h>
#else
#include "third-party/zlib/contrib/minizip/unzip.h"
#endif
#include "util/memory.h"
struct VDirEntryZip {