diff options
author | hypnotoad <yoda@etoyoc.com> | 2014-09-03 09:53:03 (GMT) |
---|---|---|
committer | hypnotoad <yoda@etoyoc.com> | 2014-09-03 09:53:03 (GMT) |
commit | df22f8966b4d309b1861247e4a5aa4a5c323c87a (patch) | |
tree | 29aafc879d0fccde1721f113e258a625d94bbd77 | |
parent | bc3c8cd9d8af2149b54691202186053d11356d27 (diff) | |
download | tcl-miniz.zip tcl-miniz.tar.gz tcl-miniz.tar.bz2 |
*** NON WORKING BUILD ***
miniz
This file integrates miniz in the manner in which the developers of miniz
intended. However, there are key data structures and capabilities the library
is missing. (Specifically the gz_stream APIs used when transforming a channel.)
This branch is for posterity. Though if anyone can salvage the effort, have at it.
-rw-r--r-- | generic/tclZlib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclZlib.c b/generic/tclZlib.c index 956e3f9..da9f97e 100644 --- a/generic/tclZlib.c +++ b/generic/tclZlib.c @@ -13,10 +13,9 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ - #include "tclInt.h" #ifdef HAVE_ZLIB -#include <zlib.h> +#include "../compat/miniz/miniz.c" #include "tclIO.h" /* |