From: Manuel Nickschas Date: Mon, 17 Feb 2014 21:13:18 +0000 (+0100) Subject: Add miniz, a drop-in replacement for (parts of) zlib X-Git-Tag: 0.10-beta1~15 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=3156b80615b3783bde9399d0925c745fe3af262e;hp=3156b80615b3783bde9399d0925c745fe3af262e Add miniz, a drop-in replacement for (parts of) zlib miniz is a single-file drop-in replacement for most of zlib's functionality. Having this bundled is quite convenient for us, so we can rely on compression even on platforms where zlib is not readily available. miniz allows disabling unneeded functionality at compile time, by changing some #defines, so we just compile the parts we really need (namely, the basic DEFLATE routines). We may use zlib proper in the future if we find it at compile time, though. ---