Lines Matching refs:to
12 - Remove files to be installed before copying them in Makefile.in
16 - Fix contrib/minizip to permit unzipping with desktop API [Zouzou]
17 - Improve contrib/blast to return unused bytes
19 - Improve compress() and uncompress() to support large lengths
24 - Change DEBUG macro to ZLIB_DEBUG
28 - Fix gzseek() problem on MinGW due to buggy _lseeki64 there
30 - Add --warn (-w) option to ./configure for more compiler warnings
33 - Add --debug (-d) option to ./configure to define ZLIB_DEBUG
42 - Fix *Init macros to use z_ prefix when requested
58 - Change check for a four-byte type back to hexadecimal
79 - Avoid shift equal to bits in type (caused endless loop)
85 - Add note to contrib/blast to use binary mode in stdio
91 - Add _tr_flush_bits to the external symbols prefixed by --zprefix
96 - Fix types in contrib/minizip to match result of get_crc_table()
98 - Add TOP support to win32/Makefile.msc
101 - Add vc11 and vc12 build files to contrib/vstudio
105 - Add casts and consts to ease user conversion to C++
108 - Do not return Z_BUF_ERROR if deflateParam() has nothing to write
115 - Require gcc 4.0 or later on Mac OS X to use the hidden attribute
121 - Cast to char * in gzprintf to avoid warnings [Zinser]
125 - Fix bug in gzclose_w() when gzwrite() fails to allocate memory
126 - Add "x" (O_EXCL) and "e" (O_CLOEXEC) modes support to gzopen()
129 - Add ability to choose the builder in make_vms.com [Schweda]
130 - Add DESTDIR support to mingw32 win32/Makefile.gcc
136 - If using cmake with MSVC, add the source directory to the includes
138 - Move obsolete emx makefile to old [Truta]
144 - Rename zconf.h in CMakeLists.txt to move it out of the way
154 - Fix the path to zlib.map in CMakeLists.txt
155 - Force the native libtool in Mac OS X to avoid GNU libtool [Beebe]
156 - Add instructions to win32/Makefile.gcc for shared install [Torri]
189 - Add -I../.. -L../.. to CFLAGS for minizip and miniunzip
190 - Add missing libs to minizip linker command
192 - Add an --enable-demos option to contrib/minizip/configure
194 - Exit when required parameters not provided to win32/Makefile.gcc
202 - Update win32/Makefile.msc to build test/*.c [Truta]
205 - Update win32/Makefile.gcc to build test/*.c [Truta]
208 - Permit Z_NULL arguments to deflatePending
209 - Allow deflatePrime() to insert bits in the middle of a stream
215 - fix ld error: unable to find version dependency 'ZLIB_1.2.5'
219 - Add assertions to fill_window() in deflate.c to match comments
224 - Change gzread() and related to ignore junk after gzip streams
225 - Allow gzread() and related to continue after gzclearerr()
228 - Change gzgetc() to a macro for speed (~40% speedup in testing)
229 - Fix gzclose() to return the actual error last encountered
234 - Merge vestigial vsnprintf determination from zutil.h to gzguts.h
237 - Add a transparent write mode to gzopen() when 'T' is in the mode
239 - Get inffixed.h and MAKEFIXED result to match
240 - Add a ./config --solo option to make zlib subset with no library use
242 - Add --cover option to ./configure for gcc coverage testing
243 - Add #define ZLIB_CONST option to use const in the z_stream interface
244 - Add comment to gzdopen() in zlib.h to use dup() when using fileno()
245 - Note behavior of uncompress() to provide as much data as it can
246 - Add files in contrib/minizip to aid in building libminizip
248 - Change ON macro to Z_ARG to avoid application conflicts
251 - Move example.c and minigzip.c to test/
253 - Remove code from inflate.c and infback.c that is impossible to execute
256 - Add deflateResetKeep and fix inflateResetKeep to retain dictionary
257 - Fix gzwrite.c to accommodate reduced memory zlib compilation
260 - Fix gzeof() to behave just like feof() when read is not past end of file
263 - Document gzread() capability to read concurrently written files
268 - Avoid symbolic argument to chmod in Makefile.in
270 - Update contrib/puff/zeros.raw test file to have all block types
274 - Add libz.a dependency to shared in Makefile.in for parallel builds
277 - Add darwin* to Darwin* and solaris* to SunOS\ 5* in configure [Groffen]
278 - Add solaris* to Linux* in configure to allow gcc use [Groffen]
279 - Add *bsd* to Linux* case in configure [Bar-Lev]
280 - Add inffast.obj to dependencies in win32/Makefile.msc
282 - Change libzdll.a again to libz.dll.a (!) in win32/Makefile.gcc
283 - Add test to configure for GNU C looking for gcc in output of $cc -v
284 - Add zlib.pc generation to win32/Makefile.gcc [Weigelt]
287 - Make NO_DIVIDE option in adler32.c much faster (thanks to John Reiser)
288 - Make stronger test in zconf.h to include unistd.h for LFS
289 - Apply Darwin patches for 64-bit file offsets to contrib/minizip [Slack]
292 - Avoid deflate sensitivity to volatile input data
296 - Use u4 type for crc_table to avoid conversion warnings
297 - Apply casts in zlib.h to avoid conversion warnings
298 - Add OF to prototypes for adler32_combine_ and crc32_combine_ [Miller]
299 - Improve inflateSync() documentation to note indeterminancy
300 - Add deflatePending() function to return the amount of pending output
305 - Delete line in configure that adds -L. libz.a to LDFLAGS [Weigelt]
307 - Update RFC references to use http://tools.ietf.org/html/... [Li]
308 - Add --archs option, use of libtool to configure for Mac OS X [Borstel]
312 - Default to libdir as sharedlibdir in configure [Nieder]
314 - Update trees.c to be able to generate modified trees.h
323 - Define ZLIB_INTERNAL to hide internal functions and arrays for GNU C
329 - Try to use bash or ksh regardless of functionality of /bin/sh
331 - Remove attempt to run under bash or ksh since have better NetBSD fix
334 - Added --sharedlibdir option to configure [Weigelt]
340 - Assume _LARGEFILE64_SOURCE defined is equivalent to true
344 - Move z_off64_t to public interface, use instead of off64_t
345 - Remove ! from shell test in configure (not portable to Solaris)
346 - Change +0 macro tests to -0 for possibly increased portability
349 - Add consistent carriage returns to readme.txt's in masmx86 and masmx64
352 - Update README to point to contrib/vstudio project files
353 - Move projects/vc6 to old/ and remove projects/
359 - Use TEST_LDSHARED instead of LDSHARED to link test programs [Weigelt]
360 - Add +0 to _FILE_OFFSET_BITS and _LFS64_LARGEFILE in case not defined
361 - Fix bug in gzeof() to take into account unused input data
371 - Add check for shell to configure and invoke another shell if needed
376 - Set EXE to ".exe" in configure for MINGW [Kahle]
377 - Match crc32() in crc32.c exactly to the prototype in zlib.h [Sherrill]
381 - Allow ldconfig to be redefined in configure and Makefile.in [Bar-Lev]
382 - Add cross-compilation prefixes to configure [Bar-Lev]
384 - Match type exactly of zcalloc() in zutil.c to zlib.h alloc_func
391 - Update zlib.3, add docs to Makefile.in to make .pdf out of it
392 - Add zlib.3.pdf to distribution
394 - Apply destination directory fixes to CMakeLists.txt [Lowman]
395 - Move #cmakedefine's to a new zconf.in.cmakein
397 - Add distclean to dummy Makefile for convenience
401 - Change libz.dll.a back to libzdll.a in win32/Makefile.gcc
402 - Apply license and readme changes to contrib/asm686 [Raiter]
405 - Avoid use of "eof" parameter in trees.c to not shadow library variable
419 - Update readme.txt in contrib/masmx64 and masmx86 to assemble
423 - Move as400 build information to old
425 - Add const to vsnprintf test in configure to avoid warnings [Weigelt]
427 - Change zconf.in.h to zconf.h.in per convention [Weigelt]
431 - Update minizip to 1.1 [Vollant]
433 - Note in zlib.h that gzerror() should be used to distinguish from EOF
442 - Use z_off64_t in gz_zero() and gz_skip() to match state->skip
444 - Revert to Makefile.in from 1.2.3.6 (live with the clutter)
446 - Add *64 functions to zlib.map [Levin]
449 - Add --64 option to ./configure to use -m64 with gcc
450 - Fix ./configure --help to correctly name options
457 - Fix gzdirect() to work immediately after gzopen() or gzdopen()
464 - Return zero for gzwrite() errors to match zlib.h description
465 - Return -1 on gzputs() error to match zlib.h description
466 - Add zconf.in.h to allow recovery from configure modification [Weigelt]
469 - Add *BSD and DragonFly to Linux case in configure [gentoo 123571]
470 - Change libzdll.a to libz.dll.a in win32/Makefile.gcc [gentoo 288212]
472 - Keep object files in subdirectories to reduce the clutter somewhat
474 - Add new external functions to Z_PREFIX, remove duplicates, z_z_ -> z_
483 - Fix usage of strwinerror() in glib.c, change to gz_strwinerror()
485 - Update make_vms.com and add make_vms.com to contrib/minizip [Zinser]
488 - Apply various fixes to CMakeLists.txt [Lowman]
492 - Defer compression of gzprintf() result until need to
496 - Update examples/gun.c to 1.6
502 - Add $(SHAREDLIBV) to LIBS in Makefile.in [Brown]
505 - Change name of "write" variable in inffast.c to avoid library collisions
508 - Remove compressBound() call in deflate.c to avoid linking compress.o
510 - Provide alternative to perror() in minigzip.c for WinCE [Alves]
513 - Update contrib/minizip to 1.1 [Svensson, Vollant]
514 - Moved nintendods directory from contrib to .
517 - Update contrib/minizip to 1.1b
518 - Change gzeof() to return 0 on error instead of -1 to agree with zlib.h
525 - Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h
527 - Fix configure to populate SFLAGS with discovered CFLAGS options
528 - Adapt make_vms.com to the new Makefile.in [Zinser]
530 - Add _FILE_OFFSET_BITS=64 test to make test (when applicable)
531 - Add AMD64 assembler code for longest match to contrib [Teterin]
534 - Make shared object files in objs directory to work around old Sun cc
536 - Add rc option to ar in Makefile.in for when ./configure not run
537 - Add -WI,-rpath,. to LDFLAGS for OSF 1 V4*
540 - Rename Makefile.in targets allstatic to static and allshared to shared
541 - Fix static and shared Makefile.in targets to be independent
544 - Add pigz.c (parallel implementation of gzip) to examples/
545 - Correct constant in crc32.c to UL [Leventhal]
547 - Add inflateReset2() function to work like inflateEnd()/inflateInit2()
552 Assures that random input to inflate eventually results in an error
553 - Added enough.c (calculation of ENOUGH for inftrees.h) to examples/
554 - Update ENOUGH and its usage to reflect discovered bounds
556 - Add ush casts in trees.c to avoid pedantic runtime errors
558 - Correct inflate() comments with regard to automatic header detection
561 - Add puff compile option to permit invalid distance-too-far streams
562 - Add puff TEST command options, ability to read piped input
565 - Fix Z_FULL_FLUSH to truly erase the past by resetting s->strstart
566 - Fix deflateSetDictionary() to use all 32K for output consistency
568 - Clear bytes after deflate lookahead to avoid use of uninitialized data
569 - Change a limit in inftrees.c to be more transparent to Coverity Prevent
572 - Allow Z_BLOCK for deflate() to force a new block
573 - Allow negative bits in inflatePrime() to delete existing bit buffer
574 - Add Z_TREES flush option to inflate() to return at end of trees
575 - Add inflateMark() to return current state information for random access
576 - Add Makefile for NintendoDS to contrib [Costa]
577 - Add -w in configure compile tests to avoid spurious warnings [Beucler]
583 - Add compile option to permit invalid distance-too-far streams
584 - Add inflateUndermine() function which is required to enable above
592 is defined to be 64
593 - Add a --uname= option to configure to perhaps help with cross-compiling
599 - Rig configure --shared to build both shared and static [Teredesai, Truta]
615 - Add comments to zlib.h about gzerror() usage [Brown]
624 trees.c, according to the txtvsbin.txt document [Truta]
638 - Add a document that explains the new text detection scheme to
640 - Add rfc1950.txt, rfc1951.txt and rfc1952.txt to doc/ [Truta]
645 - Set examples/zpipe.c input and output to binary mode for Windows
652 not designed to be exported." [Levin]
653 - Update Z_PREFIX list in zconf.in.h, add --zprefix option to configure
655 NO_INIT_GLOBAL_POINTERS to initialize them if needed [Marquess]
658 - Move arguments for AR to its usage to allow replacing ar [Marot]
662 - Change configure help option from --h* to --help [Santos]
665 - Apply security vulnerability fixes to contrib/infback9 as well
676 - Add zran.c example of compressed data random access to examples
678 - Fix cast for assignments to strm->state in inflate.c and infback.c
679 - Fix zlibCompileFlags() in zutil.c to use 1L for long shifts [Oberhumer]
680 - Move declarations of gf2 functions to right place in crc32.c [Oberhumer]
687 invalid inflate input. Thanks to Tavis Ormandy and Markus Oberhumer for
689 - Add ia64 support to configure for HP-UX [Smith]
690 - Add error return to gzread() for format or i/o error [Levin]
698 - Add the deflateTune() function to adjust internal compression parameters
699 - Add a fast gzip decompressor, gun.c, to examples (use of inflateBack)
705 - Add _WIN32_WCE to define WIN32 in zconf.in.h [Spencer]
707 - Add gzdirect() function to indicate transparent reads
710 - Add casts in crc32.c to avoid warnings [Oberhumer]
715 - Replace structure assignments in deflate.c and inflate.c with zmemcpy to
717 - Increase sprintf() buffer size in gzdopen() to allow for large numbers
718 - Add INFLATE_STRICT to check distances against zlib header
721 - Add Z_FIXED strategy option to deflateInit2() to force fixed trees
738 - Add inflateGetheader() to retrieve gzip headers
740 - Add alloc_func, free_func, in_func, out_func to Z_PREFIX list
752 - Add comment in zlib.h for Z_NO_FLUSH parameter to deflate()
757 - Set adler to 1 in inflateReset() to support Java test suite [Walles]
761 - Move contrib/visual-basic.txt to old/ [Truta]
766 - Fix trees.c to update strm->data_type (no one ever noticed!)
768 - Add "volatile" to crc table flag declaration (for DYNAMIC_CRC_TABLE)
769 - Add limited multitasking protection to DYNAMIC_CRC_TABLE
772 - Add comment to DYNAMIC_CRC_TABLE to use get_crc_table() to initialize
775 - Fix configure to not hardcode directories for Darwin [Peterson]
776 - Fix gzio.c to not return error on empty files [Brown]
785 - Remove an unnecessary assignment to curr in inftrees.c [Truta]
786 - Add OS/2 to exe builds in configure [Poltorak]
794 Thanks to "Hot Emu" for the bug report and sample file
795 - Add a note to puff.c on no distance codes case.
809 - Correct Z_BLOCK to not return on first inflate call if no wrap
810 - Fix strm->data_type on inflate() return to correctly indicate EOB
812 - Add contrib/gzappend for an example of appending to a stream
818 - Add example to contrib/visual-basic.txt [Michael B.]
819 - Add -p to mkdir's in Makefile.in [vda]
820 - Fix configure to properly detect presence or lack of printf functions
827 - Change search and replace delimiter in configure from % to # [Beebe]
828 - Update contrib/untgz to 0.2 with various fixes [Truta]
830 - Remove some directories in old that have been updated to 1.2
833 - Update README to point to DLL_FAQ.txt, and add comment on Mac OS X
838 - Update contrib/minizip to 1.00 [Vollant]
846 - Add OF to inflateBackEnd() declaration in zlib.h
848 - Use internal off_t counters in gz* functions to properly handle seeks
850 - Add Z_BLOCK flush option to return from inflate at block boundary
858 - Move contrib/zlib_dll_FAQ.txt to win32/DLL_FAQ.txt; update [Truta]
859 - Adapt the zlib interface to the new DLL convention guidelines [Truta]
860 - Introduce ZLIB_WINAPI macro to allow the export of functions using
865 - Move asm files from contrib/vstudio/vc70_32 to contrib/asm386 [Truta]
866 - Rename contrib/asm386 to contrib/masmx86 [Truta, Vollant]
870 - Update contrib/delphi; rename to contrib/pascal; add example [Truta]
874 - Fix the ZCR_SEED2 constant to avoid warnings in contrib/minizip
878 - Update contrib/vstudio/vc70_32 to comply with the new DLL guidelines
881 - Rename contrib/vstudio/vc70_32 to contrib/vstudio/vc7 [Truta]
885 - Compare TOO_FAR with 32767 instead of 32768, to avoid 16-bit warnings
889 - Introduce ASMINF macro to be enabled when using an ASM implementation
891 - Change NO_DEFLATE to NO_GZCOMPRESS [Truta]
892 - Modify test_gzio in example.c to take a single file name as a
896 - Remove casting to sizeof in minigzip.c; give a proper type
897 to the variable compared with SUFFIX_LEN [Truta]
900 - Use SYS16BIT instead of __32BIT__ to distinguish between
913 - Change NO_GUNZIP compile option to NO_GZIP to cover deflate as well
914 - Add gzip wrapper option to deflateInit2 using windowBits
918 - Add casting to sizeof() in gzio.c and minigzip.c
929 - Attempt to avoid warnings in crc32.c for pointer-int conversion
930 - Add AIX to configure, remove aix directory [Bakker]
931 - Add some casts to minigzip.c
934 - Change leave label to inf_leave in inflate.c and infback.c to avoid
938 - Add zlibCompileFlags() function to return compilation information
939 - More typecasting in deflate.c to avoid warnings
941 - Fix configure to link shared library when testing
946 - Add zlib_dll_FAQ.txt to contrib [Truta]
947 - Add UL to some constants [Truta]
950 - Expand use of NO_DUMMY_DECL to avoid all dummy structures
951 - Added iostream3 to contrib [Schwardt]
957 - Allow TOO_FAR check to be turned off at compile time [Truta]
963 - When Z_RLE requested, restrict matches to distance one
965 - Correct FASTEST compilation to allow level == 0
967 - Incorporate changes to zconf.in.h [Vollant]
971 - Try to use _vsnprintf where it supplants vsprintf [Vollant]
973 - Enchance comments in zlib.h on what happens if gzprintf() tries to
978 - Add "check" target to Makefile.in that does the same thing as "test"
979 - Add "mostlyclean" and "maintainer-clean" targets to Makefile.in
983 - More additions and improvements to the FAQ
993 - Added inflateCopy() function to record state for random access on
997 - About 50% faster, thanks to suggestions from Rodney Brown
1006 - Fix uncompress() to return Z_DATA_ERROR on truncated input
1016 - Use $cc instead of gcc to build shared library
1021 - Update configure to check for snprintf or vsnprintf functions and their
1024 is lost when library is used--resolution is to build new zconf.h
1033 - Add some FAQs (and even answers) to the FAQ
1045 - force windowBits > 8 to avoid a bug in the encoder for a window size
1061 - use macro EXTERN instead of extern to support DLL for BeOS (Sander Stoks)
1070 - allow several arguments to configure (Tim Mooney, Frodo Looijaard)
1075 - Python interface to zlib now in Python 1.5 (Jeremy Hylton)
1081 - fix maketree.c to allow clean compilation of inffixed.h (Mark)
1099 - preinitialize the inflate tables for fixed codes, to make the code
1101 - some simplifications and slight speed-up to the inflate code (Mark)
1103 - add -std1 option in configure for OSF1 to fix gzprintf (Martin Mokrejs)
1113 - move Makefile.sas to amiga/Makefile.sas
1125 - revert to the zlib 1.0.8 inflate to avoid the gcc 2.8.0 bug (Jeremy Buhler)
1126 - compile with -DFASTEST to get compression code optimized for speed only
1131 - add a pointer to experimental unzip library in README (Gilles Vollant)
1139 - replace EXPORT with ZEXPORT to avoid conflict with other programs
1150 - in zconf.h move the ZLIB_DLL stuff earlier to avoid problems with
1161 - added compress2() to allow setting the compression level
1162 - include sys/types.h to get off_t on some systems (Marc Lehmann & QingLong)
1164 them at run time (thanks to Ken Raeburn for this suggestion). To create
1167 - pass minigzip command line options to file_compress
1168 - simplifying code of inflateSync to avoid gcc 2.8 bug
1172 - fix test for shared library support to avoid compiler warnings
1174 - check for TARGET_OS_MAC in addition to MACOS (Brad Pettit)
1186 - return error for gzseek to negative absolute position
1202 gzsetparams (thanks to Roland Giersig and Kevin Ruland for some of this code)
1203 - Fix a deflate bug occurring only with compression level 0 (thanks to
1207 - check Z_FINISH in inflate (thanks to Marc Schluper)
1208 - Implement deflateCopy (thanks to Adam Costello)
1210 - move MSDOS or Windows specific files to directory msdos
1211 - suppress the notion of partial flush to simplify the interface
1213 - suppress history buffer provided by application to simplify the interface
1218 - added Makefile.nt (thanks to Stephen Williams)
1223 A C++ I/O streams interface to the zlib gz* functions
1229 How to use compress(), uncompress() and the gz* functions from VB.
1230 - pass params -f (filtered data), -h (huffman only), -1 to -9 (compression
1231 level) in minigzip (thanks to Tom Lane)
1236 - add undocumented function zError to convert error code to string
1238 - Allow compilation of gzio with -DNO_DEFLATE to avoid the compression code.
1241 - add current directory to LD_LIBRARY_PATH for "make test"
1243 - added support for FUJITSU UXP/DS (thanks to Toshiaki Nomura)
1246 - assign numbers to the exported functions in zlib.def (for Windows DLL)
1255 - limit external names to 8 chars for MVS (Thomas Lund)
1262 - Avoid expanded $Id$. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
1265 - avoid useless assignment of s->check to itself in inflate_blocks_new
1266 - do not flush twice in gzclose (thanks to Ken Raeburn)
1267 - rename FOPEN as F_OPEN to avoid clash with /usr/include/sys/file.h
1270 - support zlib DLL with BORLAND C++ 5.0 (thanks to Glenn Randers-Pehrson)
1271 - fix configure if CC is already equal to gcc
1274 - Fix inflate to terminate gracefully when fed corrupted or invalid data
1281 - In very rare conditions, deflate(s, Z_FINISH) could fail to produce an EOF
1283 on to attempt decompressing extra garbage data. This affected minigzip too.
1285 - port to RISCOS (no fdopen, no multiple dots, no unlink, no fileno)
1293 avail_out as zero but there is nothing to do
1309 Changes in 1.0.1 (20 May 96) [1.0 skipped to avoid confusion]
1336 - add optional "configure" to build zlib as a shared library
1341 - always return Z_BUF_ERROR when deflate() has nothing to do
1342 - deflateInit and inflateInit are now macros to allow version checking
1346 - free in reverse order of allocation to help memory manager
1365 - renamed ct_* as _tr_* to avoid conflict with applications
1373 - use STDC instead of __GO32__ to avoid redeclaring exit, calloc, etc...
1379 - added reference to Perl interface in README
1382 - added a dimension to all arrays (Borland C can't count).
1385 - Watcom C pretends to be Microsoft C small model even in 32 bit mode.
1386 - don't use unsized arrays to avoid silly warnings by Visual C++:
1389 - define enum out of inflate_blocks_state to allow compilation with C++
1392 - fix MSDOS small and medium model (now easier to adapt to any compiler)
1397 (it's now sufficient to set MAX_WBITS in zconf.h).
1433 - untabify all sources to simplify patches
1450 - moved MAX_WBITS to zconf.h because users might want to change that.
1482 - added gzdopen to reopen a file descriptor as gzFile
1513 - use Z_FINISH instead of deflateEnd to finish compression.