summaryrefslogtreecommitdiff
path: root/contrib (follow)
Commit message (Collapse)AuthorAgeFilesLines
* zlib 1.2.10v1.2.10Mark Adler2017-01-0211-23/+23
|
* Change version number to zlib 1.2.9.1.Mark Adler2017-01-0111-30/+30
|
* Fix some stray 1.2.8.1 version numbers.Mark Adler2017-01-012-4/+4
|
* zlib 1.2.9v1.2.9Mark Adler2016-12-3116-312/+362
|
* Update Visual Studio project files (AraHaan).Mark Adler2016-12-3131-13/+5706
|
* Fix character encoding and link in contrib README.Mark Adler2016-12-301-2/+2
|
* Fix some typos.Mark Adler2016-10-305-17/+17
|
* Fix typo in blast.c.Mark Adler2016-07-101-1/+1
|
* Improve contrib/blast to return unused bytes. Fix the test codeMark Adler2013-08-242-15/+43
| | | | | to report the count of unused bytes at the end correctly. Add the ability to provide initial input to blast().
* Fix contrib/minizip to permit unzipping with desktop API [Zouzou].Mark Adler2013-08-031-3/+4
|
* Change version number to 1.2.8.1.Mark Adler2013-05-0212-20/+20
|
* Fix mixed line endings in contrib/vstudio.Mark Adler2013-04-284-27/+27
|
* Clean up contrib/vstudio [Roß].Mark Adler2013-04-2821-1138/+592
|
* Update contrib/minizip/iowin32.c for Windows RT [Vollant].Mark Adler2013-04-281-13/+85
|
* Change version number to 1.2.8.Mark Adler2013-04-2814-24/+24
|
* Fix version numbers and DLL names in contrib/vstudio/*/zlib.rc.Mark Adler2013-04-135-17/+17
|
* Change version number to 1.2.7.3.Mark Adler2013-04-1310-16/+16
|
* Change version number to 1.2.7.2.Mark Adler2013-04-1310-20/+20
|
* Add man pages for minizip and miniunzip.Enrico Weigelt, metux IT service2013-03-242-0/+109
|
* Clean up the addition of gzvprintf.Mark Adler2013-03-234-0/+4
|
* Clean up the addition of inflateGetDictionary.Mark Adler2013-03-232-0/+6
|
* Add vc11 and vc12 build files to contrib/vstudio.Mark Adler2013-03-2216-0/+3335
|
* Simplify contrib/vstudio/vc10 with 'd' suffix.Fredrik Orderud2013-02-231-26/+2
|
* Fix types in contrib/minizip to match result of get_crc_table().takacsd2013-02-233-6/+6
|
* Fix casting error in contrib/testzlib/testzlib.c.Jason Williams2013-02-231-2/+2
|
* Add contrib/vstudio/vc10 pre-build step for static only.Greg Domjan2013-02-232-1/+17
| | | | Also correct typo for 64-bit debug build.
* Check for invalid code length codes in contrib/puff.Mark Adler2013-01-213-6/+9
| | | | | Without this fix, it would be possible to construct inputs to puff that would cause it to segfault.
* Fix comparisons of differently signed integers in contrib/blast.Mark Adler2012-10-241-1/+2
|
* Add note to contrib/blast to use binary mode in stdio.Mark Adler2012-10-242-4/+9
|
* Clean up the usage of z_const and respect const usage within zlib.Mark Adler2012-08-131-1/+1
| | | | | | | | | This patch allows zlib to compile cleanly with the -Wcast-qual gcc warning enabled, but only if ZLIB_CONST is defined, which adds const to next_in and msg in z_stream and in the in_func prototype. A --const option is added to ./configure which adds -DZLIB_CONST to the compile flags, and adds -Wcast-qual to the compile flags when ZLIBGCCWARN is set in the environment.
* Remove unused variable in infback9.c.Mark Adler2012-07-081-2/+0
|
* Fix comment typos in unzip.h and unzip.c.Birunthan Mohanathas2012-07-082-7/+7
|
* Add inflateGetDictionary() function.Mark Adler2012-05-262-0/+6
|
* Change version number to 1.2.7.1.Mark Adler2012-05-0210-16/+16
|
* Fix contrib/minizip compilation in the MinGW environment.jK2012-03-262-2/+19
|
* Remove gzflags from zlibvc.def in vc9 and vc10.Birunthan Mohanathas2012-03-222-2/+0
|
* Add gzopen_w() in Windows for wide character path names.Mark Adler2012-03-162-1/+7
|
* Fix contrib/vstudio project link errors [Mohanathas].Mark Adler2012-03-047-20/+44
|
* Restore gzgetc_ for backward compatibility with 1.2.6.Mark Adler2012-02-182-0/+2
|
* Expunge gzgetc_ from configuration files.Mark Adler2012-02-132-2/+0
|
* Change version number to 1.2.7.Mark Adler2012-02-127-13/+13
|
* Minor cleanup in contrib/minizip/zip.c [Vollant].Mark Adler2012-02-041-2/+2
|
* Put gzflags() functionality back in zutil.c.Mark Adler2012-02-012-2/+0
| | | | | | | | | | gzflags() was put in gzwrite.c in order to be compiled exactly the same as gzprintf(), so that it was guaranteed to return the correct information. However that causes a static linkage to zlib to bring in many routines that are often not used. All that is required to duplicate the compilation environment of gzprintf() is to include gzguts.h. So that is now done in zutil.c to assure that the correct flags are returned.
* Change version number to 1.2.6.1.Mark Adler2012-01-297-13/+13
|
* Add an --enable-demos option to contrib/minizip/configure.Jonathan Nieder2012-01-212-0/+14
| | | | | | | | | | | | This makes build-testing and installing the minizip/miniunzip programs as simple as "autoreconf -if && ./configure --enable-demos && make && make install". Without --enable-demos, the makefile will only build and install the library, as before. Helped by Mike Frysinger. minizip/miniunzip were not intended to be general-purpose installed utilities, but they can be useful from time to time as a lightweight substitute for zip/unzip. You can also use them to quickly test that the library installation procedure worked.
* Add support for VPATH builds in contrib/minizip.Jonathan Nieder2012-01-211-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | Instead of using relative paths directly, use paths relative to top_srcdir and top_builddir to refer to source files and built files, respectively. Note that the toplevel zlib configure script still does not have any special support for out-of-tree builds. But now you can do (cd contrib/minizip && autoreconf -fis) mkdir -p BUILD/test cp *.c *.h *.in zlib.map configure zlib.3 BUILD cp test/*.c BUILD/test (cd BUILD && ./configure --shared) (cd BUILD && make) mkdir -p BUILD/contrib/minizip cd BUILD/contrib/minizip ../../../contrib/minizip/configure make While at it, move the include path and library path settings to CPPFLAGS and LDFLAGS respectively instead of setting both in CFLAGS. Thanks to Mike Frysinger for advice.
* Add missing libs to minizip linker command.Jonathan Nieder2012-01-211-0/+1
| | | | | | | | | | | | | | | | | | | | | Trying to build the minizip utility from contrib/minizip after an autoreconf -f: libtool: link: gcc -g -O2 -o minizip minizip.o minizip.o: In function `getFileCrc': /tmp/zlib/contrib/minizip/minizip.c:211: undefined reference to `crc32' minizip.o: In function `main': /tmp/zlib/contrib/minizip/minizip.c:378: undefined reference to `zipOpen64' /tmp/zlib/contrib/minizip/minizip.c:451: undefined reference to `zipOpenNewFileInZip3_64' /tmp/zlib/contrib/minizip/minizip.c:502: undefined reference to `zipCloseFileInZip' /tmp/zlib/contrib/minizip/minizip.c:509: undefined reference to `zipClose' /tmp/zlib/contrib/minizip/minizip.c:485: undefined reference to `zipWriteInFileInZip' collect2: error: ld returned 1 exit status The cause: contrib/minizip/Makefile.am does not specify that minizip needs to be linked to libminizip. With some linkers (e.g., GNU binutils without --copy-dt-needed-entries), an indirect dependency cannot be used to resolve symbols, so link to libz for crc32(), too.
* Add -I../.. -L../.. to CFLAGS for minizip and miniunzip.Jonathan Nieder2012-01-211-1/+1
| | | | | | | | | | | | | | Trying to build miniunzip utility from contrib/minizip after an autoreconf -f produces [...] In file included from minizip.c:61:0: zip.h:50:18: fatal error: zlib.h: No such file or directory unless zlib is already installed. Use AM_CFLAGS to set the include path and library path to point to the just-build copy of zlib to fix this. (This was already done for libminizip but not the binaries that use it before this patch.)
* Remove trailing space in contrib/minizip/minizip.c.Mark Adler2012-01-211-1/+1
|
* Avoid some warnings in contrib/minizip [Vollant].Mark Adler2012-01-211-2/+2
|