mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 13:34:57 +00:00
Require minizip 2.0.0 or newer
Minizip 1.x is the old broken version, while 2.x is the newer fork we use. Many distros ship the old version which is causing stack smashing in RedumpVerifier, so we'll only use the shared lib if it's the newer version.
This commit is contained in:
parent
ac18f7e884
commit
d5f356f937
1 changed files with 1 additions and 1 deletions
|
@ -610,7 +610,7 @@ else()
|
|||
add_subdirectory(Externals/zlib)
|
||||
endif()
|
||||
|
||||
pkg_check_modules(MINIZIP minizip)
|
||||
pkg_check_modules(MINIZIP minizip>=2.0.0)
|
||||
if(MINIZIP_FOUND)
|
||||
message(STATUS "Using shared minizip")
|
||||
else()
|
||||
|
|
Loading…
Add table
Reference in a new issue