File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ chump_lib_sources = [
11
11
nlohmann_json_dep = subproject (' nlohmann_json' ).get_variable (' nlohmann_json_dep' )
12
12
openssl_dep = subproject (' openssl' , default_options : [' prefer_static=true' ], required : true ).get_variable (' openssl_dep' )
13
13
libcurl_dep = subproject (' curl' , default_options : [' prefer_static=true' ], required : true ).get_variable (' curl_dep' )
14
- minizip_dep = subproject (' minizip-ng' , required : true ).get_variable (' minizip_ng_dep' )
14
+ minizip_dep = subproject (' minizip-ng' , default_options : [ ' prefer_static=true ' ], required : true ).get_variable (' minizip_ng_dep' )
15
15
16
16
cheaders_proj = subproject (' cheaders' )
17
17
cheaders_dep = cheaders_proj.get_variable (' cheaders_dep' )
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ fs::path fileTypeToDir(FileType f) {
216
216
}
217
217
218
218
bool unzipFile (const std::string &zipPath, const std::string &outputDir) {
219
- unzFile zipFile = unzOpen (zipPath.c_str ());
219
+ unzFile zipFile = unzOpen64 (zipPath.c_str ());
220
220
if (zipFile == nullptr ) {
221
221
std::cerr << " [chump]: error opening ZIP file: " << zipPath << std::endl;
222
222
return false ;
You can’t perform that action at this time.
0 commit comments