I'm trying to use miniz instead of zlib with a library that expects to link with libz.
You've got "deflate()" etc defined in miniz.h and 'static'. This prevents the other library from seeing the functions, and if I just remove "static" I'll get multiple copies (since I am including miniz.h in more than one place).
Best regards,
Ron