diff options
author | nijtmans <nijtmans> | 2008-12-19 09:14:02 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-12-19 09:14:02 (GMT) |
commit | fae92e13aa67786689aca359e3454837d43358b8 (patch) | |
tree | afa2c5e26054c0a99598dbef37df560c16db2199 /compat/zlib/zlib.h | |
parent | c9226edd34ab23fefc58415e8a91eac5a5a6e3cb (diff) | |
download | tcl-fae92e13aa67786689aca359e3454837d43358b8.zip tcl-fae92e13aa67786689aca359e3454837d43358b8.tar.gz tcl-fae92e13aa67786689aca359e3454837d43358b8.tar.bz2 |
add symbols deflateSetHeader and inflateGetHeader to win32/zlib.def
Modify ChangeLog, README and zlib.h, documenting this change,
so we comply with the zlib requirements of clearly marking the modification.
Diffstat (limited to 'compat/zlib/zlib.h')
-rw-r--r-- | compat/zlib/zlib.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/compat/zlib/zlib.h b/compat/zlib/zlib.h index 0228179..586ab31 100644 --- a/compat/zlib/zlib.h +++ b/compat/zlib/zlib.h @@ -37,8 +37,13 @@ extern "C" { #endif -#define ZLIB_VERSION "1.2.3" -#define ZLIB_VERNUM 0x1230 +/* This version is modified from the original + * sources, in that the symbols deflateSetHeader + * and inflateGetHeader are added to win32/zlib.def + * modified by nijtmans@users.sourceforge.net + */ +#define ZLIB_VERSION "1.2.3.f-tcl" +#define ZLIB_VERNUM 0x123f /* The 'zlib' compression library provides in-memory compression and |