Increasing zlib's TOO_FAR improves compression efficiency with minor performance costs. It would be nice if this could be configured, instead of header-hacked. (Alternatively, I suppose I could define TOO_FAR whenever using zlib.)
Actually, it's in deflate.c, and it already has an #ifndef, so I can define it while compiling instead of patching, and users don't need to define it at all. Duh.
Increasing zlib's
TOO_FAR
improves compression efficiency with minor performance costs. It would be nice if this could be configured, instead of header-hacked. (Alternatively, I suppose I could defineTOO_FAR
whenever using zlib.)