Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix some typos. | Mark Adler | 2016-10-30 | 2 | -12/+12 | |
| | ||||||
* | Fix contrib/minizip to permit unzipping with desktop API [Zouzou]. | Mark Adler | 2013-08-03 | 1 | -3/+4 | |
| | ||||||
* | Change version number to 1.2.8.1. | Mark Adler | 2013-05-02 | 1 | -1/+1 | |
| | ||||||
* | Update contrib/minizip/iowin32.c for Windows RT [Vollant]. | Mark Adler | 2013-04-28 | 1 | -13/+85 | |
| | ||||||
* | Change version number to 1.2.8. | Mark Adler | 2013-04-28 | 1 | -1/+1 | |
| | ||||||
* | Change version number to 1.2.7.3. | Mark Adler | 2013-04-13 | 1 | -1/+1 | |
| | ||||||
* | Change version number to 1.2.7.2. | Mark Adler | 2013-04-13 | 1 | -1/+1 | |
| | ||||||
* | Add man pages for minizip and miniunzip. | Enrico Weigelt, metux IT service | 2013-03-24 | 2 | -0/+109 | |
| | ||||||
* | Fix types in contrib/minizip to match result of get_crc_table(). | takacsd | 2013-02-23 | 3 | -6/+6 | |
| | ||||||
* | Fix comment typos in unzip.h and unzip.c. | Birunthan Mohanathas | 2012-07-08 | 2 | -7/+7 | |
| | ||||||
* | Change version number to 1.2.7.1. | Mark Adler | 2012-05-02 | 1 | -1/+1 | |
| | ||||||
* | Fix contrib/minizip compilation in the MinGW environment. | jK | 2012-03-26 | 2 | -2/+19 | |
| | ||||||
* | Change version number to 1.2.7. | Mark Adler | 2012-02-12 | 1 | -1/+1 | |
| | ||||||
* | Minor cleanup in contrib/minizip/zip.c [Vollant]. | Mark Adler | 2012-02-04 | 1 | -2/+2 | |
| | ||||||
* | Change version number to 1.2.6.1. | Mark Adler | 2012-01-29 | 1 | -1/+1 | |
| | ||||||
* | Add an --enable-demos option to contrib/minizip/configure. | Jonathan Nieder | 2012-01-21 | 2 | -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 Nieder | 2012-01-21 | 1 | -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 Nieder | 2012-01-21 | 1 | -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 Nieder | 2012-01-21 | 1 | -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 Adler | 2012-01-21 | 1 | -1/+1 | |
| | ||||||
* | Avoid some warnings in contrib/minizip [Vollant]. | Mark Adler | 2012-01-21 | 1 | -2/+2 | |
| | ||||||
* | Protect for long name and extra fields in contrib/minizip [Vollant]. | Mark Adler | 2012-01-21 | 1 | -7/+17 | |
| | ||||||
* | Fix bug when compiling minizip with C++ [Vollant]. | Mark Adler | 2012-01-21 | 1 | -0/+6 | |
| | ||||||
* | Minor cleanup up contrib/minizip/unzip.c [Vollant]. | Mark Adler | 2012-01-21 | 1 | -1/+1 | |
| | ||||||
* | Avoid warning for no encryption in contrib/minizip/zip.c [Vollant]. | Mark Adler | 2012-01-21 | 1 | -0/+1 | |
| | ||||||
* | Make version explicit in contrib/minizip/configure.ac [Bosmans]. | Mark Adler | 2012-01-20 | 1 | -1/+1 | |
| | ||||||
* | Fix compilation of contrib/minizip on FreeBSD [Márquez]. | Mark Adler | 2012-01-16 | 1 | -0/+5 | |
| | ||||||
* | Fix contrib/minizip/zip.c for 64-bit architectures [Dalsnes]. | Mark Adler | 2012-01-16 | 1 | -3/+5 | |
| | ||||||
* | Fix large-entry detection in minizip on 64-bit systems [Schiffer]. | Mark Adler | 2012-01-16 | 3 | -5/+7 | |
| | ||||||
* | Fix configure.ac for contrib/minizip [Schiffer]. | Mark Adler | 2012-01-16 | 1 | -1/+1 | |
| | ||||||
* | Add files in contrib/minizip to aid in building libminizip. | Mark Adler | 2011-11-13 | 3 | -0/+52 | |
| | | | | Patch provided by Franz Schrober. | |||||
* | zlib 1.2.5.1v1.2.5.1 | Mark Adler | 2011-09-11 | 5 | -31/+69 | |
| | ||||||
* | zlib 1.2.3.9v1.2.3.9 | Mark Adler | 2011-09-09 | 13 | -208/+211 | |
| | ||||||
* | zlib 1.2.3.8v1.2.3.8 | Mark Adler | 2011-09-09 | 19 | -1139/+474 | |
| | ||||||
* | zlib 1.2.3.6v1.2.3.6 | Mark Adler | 2011-09-09 | 1 | -0/+25 | |
| | ||||||
* | zlib 1.2.3.5v1.2.3.5 | Mark Adler | 2011-09-09 | 19 | -1631/+4284 | |
| | ||||||
* | zlib 1.2.3.2v1.2.3.2 | Mark Adler | 2011-09-09 | 1 | -0/+2 | |
| | ||||||
* | zlib 1.2.3v1.2.3 | Mark Adler | 2011-09-09 | 15 | -5490/+5490 | |
| | ||||||
* | zlib 1.2.2.3v1.2.2.3 | Mark Adler | 2011-09-09 | 15 | -5449/+5490 | |
| | ||||||
* | zlib 1.2.2v1.2.2 | Mark Adler | 2011-09-09 | 6 | -30/+32 | |
| | ||||||
* | zlib 1.2.1.2v1.2.1.2 | Mark Adler | 2011-09-09 | 14 | -39/+485 | |
| | ||||||
* | zlib 1.2.0.6v1.2.0.6 | Mark Adler | 2011-09-09 | 12 | -12/+46 | |
| | ||||||
* | zlib 1.2.0.5v1.2.0.5 | Mark Adler | 2011-09-09 | 13 | -4966/+4967 | |
| | ||||||
* | zlib 1.2.0.3v1.2.0.3 | Mark Adler | 2011-09-09 | 2 | -334/+23 | |
| | ||||||
* | zlib 1.2.0.2v1.2.0.2 | Mark Adler | 2011-09-09 | 14 | -4927/+5277 | |
| | ||||||
* | zlib 1.2.0.1v1.2.0.1 | Mark Adler | 2011-09-09 | 19 | -2193/+2987 | |
| | ||||||
* | zlib 1.1.3v1.1.3 | Mark Adler | 2011-09-09 | 2 | -45/+47 | |
| | ||||||
* | zlib 1.1.2v1.1.2 | Mark Adler | 2011-09-09 | 14 | -0/+4131 | |