-
-
Notifications
You must be signed in to change notification settings - Fork 432
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make [mz_zip.c] more modular #478
Labels
distribution
Release distribution
Comments
When trying to compile the library on Apple platform |
Are you using CMake to generate xcode project? It should prevent this type of scenario. |
No I'm using Swift Package Manager. I manually copied source files. |
Making the project private with CocoapoDS won't unzip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
mz_zip.c
the library check for both,HAVE_ZLIB
andHAVE_LIBCOMP
flags and then uses the Zlib interface even though on Apple platforms it might use the Libcomp interface that is "Catfishing" Zlib.https://github.com/nmoinvaz/minizip/blob/b39f7a0e896615833a5af9dc7134563917a3a227/mz_zip.c#L1885-L1888
Wouldn't something like be better?
The text was updated successfully, but these errors were encountered: