Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Zlib
提交
fe61dfb8
T
Third Party Zlib
项目概览
OpenHarmony
/
Third Party Zlib
1 年多 前同步成功
通知
16
Star
112
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Zlib
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
fe61dfb8
编写于
12月 18, 2011
作者:
M
Mark Adler
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zlib 1.2.5.2
上级
4ab814df
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
57 addition
and
8 deletion
+57
-8
ChangeLog
ChangeLog
+51
-2
infback.c
infback.c
+1
-1
inflate.c
inflate.c
+1
-1
zlib.3
zlib.3
+1
-1
zlib.3.pdf
zlib.3.pdf
+0
-0
zlib.h
zlib.h
+2
-2
zutil.h
zutil.h
+1
-1
未找到文件。
ChangeLog
浏览文件 @
fe61dfb8
ChangeLog file for zlib
Changes in 1.2.5.2 (xx Sep 2011)
-
Changes in 1.2.5.2 (17 Dec 2011)
- fix ld error: unable to find version dependency 'ZLIB_1.2.5'
- use relative symlinks for shared libs
- Avoid searching past window for Z_RLE strategy
- Assure that high-water mark initialization is always applied in deflate
- Add assertions to fill_window() in deflate.c to match comments
- Update python link in README
- Correct spelling error in gzread.c
- Fix bug in gzgets() for a concatenated empty gzip stream
- Correct error in comment for gz_make()
- Change gzread() and related to ignore junk after gzip streams
- Allow gzread() and related to continue after gzclearerr()
- Allow gzrewind() and gzseek() after a premature end-of-file
- Simplify gzseek() now that raw after gzip is ignored
- Change gzgetc() to a macro for speed (~40% speedup in testing)
- Fix gzclose() to return the actual error last encountered
- Always add large file support for windows
- Include zconf.h for windows large file support
- Include zconf.h.cmakein for windows large file support
- Update zconf.h.cmakein on make distclean
- Merge vestigial vsnprintf determination from zutil.h to gzguts.h
- Clarify how gzopen() appends in zlib.h comments
- Correct documentation of gzdirect() since junk at end now ignored
- Add a transparent write mode to gzopen() when 'T' is in the mode
- Update python link in zlib man page
- Get inffixed.h and MAKEFIXED result to match
- Add a ./config --solo option to make zlib subset with no libary use
- Add undocumented inflateResetKeep() function for CAB file decoding
- Add --cover option to ./configure for gcc coverage testing
- Add #define ZLIB_CONST option to use const in the z_stream interface
- Add comment to gzdopen() in zlib.h to use dup() when using fileno()
- Note behavior of uncompress() to provide as much data as it can
- Add files in contrib/minizip to aid in building libminizip
- Split off AR options in Makefile.in and configure
- Change ON macro to Z_ARG to avoid application conflicts
- Facilitate compilation with Borland C++ for pragmas and vsnprintf
- Include io.h for Turbo C / Borland C++
- Move example.c and minigzip.c to test/
- Simplify incomplete code table filling in inflate_table()
- Remove code from inflate.c and infback.c that is impossible to execute
- Test the inflate code with full coverage
- Allow deflateSetDictionary, inflateSetDictionary at any time (in raw)
- Add deflateResetKeep and fix inflateResetKeep to retain dictionary
- Fix gzwrite.c to accommodate reduced memory zlib compilation
- Have inflate() with Z_FINISH avoid the allocation of a window
- Do not set strm->adler when doing raw inflate
- Fix gzeof() to behave just like feof() when read is not past end of file
- Fix bug in gzread.c when end-of-file is reached
- Avoid use of Z_BUF_ERROR in gz* functions except for premature EOF
- Document gzread() capability to read concurrently written files
- Remove hard-coding of resource compiler in CMakeLists.txt [Blammo]
Changes in 1.2.5.1 (10 Sep 2011)
- Update FAQ entry on shared builds (#13)
...
...
infback.c
浏览文件 @
fe61dfb8
/* infback.c -- inflate using a call-back interface
* Copyright (C) 1995-20
09
Mark Adler
* Copyright (C) 1995-20
11
Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
inflate.c
浏览文件 @
fe61dfb8
/* inflate.c -- zlib decompression
* Copyright (C) 1995-201
0
Mark Adler
* Copyright (C) 1995-201
1
Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
zlib.3
浏览文件 @
fe61dfb8
.TH ZLIB 3 "
27 Nov
2011"
.TH ZLIB 3 "
17 Dec
2011"
.SH NAME
zlib \- compression/decompression library
.SH SYNOPSIS
...
...
zlib.3.pdf
浏览文件 @
fe61dfb8
无法预览此类型文件
zlib.h
浏览文件 @
fe61dfb8
/* zlib.h -- interface of the 'zlib' general purpose compression library
version 1.2.5.2,
September xx
th, 2011
version 1.2.5.2,
December 17
th, 2011
Copyright (C) 1995-2011 Jean-loup Gailly and Mark Adler
...
...
@@ -37,7 +37,7 @@
extern
"C"
{
#endif
#define ZLIB_VERSION "1.2.5.2
-motley
"
#define ZLIB_VERSION "1.2.5.2"
#define ZLIB_VERNUM 0x1252
#define ZLIB_VER_MAJOR 1
#define ZLIB_VER_MINOR 2
...
...
zutil.h
浏览文件 @
fe61dfb8
/* zutil.h -- internal interface and configuration of the compression library
* Copyright (C) 1995-201
0
Jean-loup Gailly.
* Copyright (C) 1995-201
1
Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录