Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | zlib 1.2.12v1.2.12 | Mark Adler | 2022-03-27 | 1 | -1/+1 |
| | |||||
* | Clean up minizip to reduce warnings for testing. | Mark Adler | 2022-01-01 | 9 | -87/+96 |
| | | | | Also fix Makefile test target and permit added compile options. | ||||
* | Fix unztell64() in minizip to work past 4GB. (Daniël Hörchner) | Mark Adler | 2022-01-01 | 1 | -0/+3 |
| | | | | | | | | | | | | The issue is that unztell64() does not return the correct value if the position in the current file (in the ZIP archive) is beyond 4 GB. The cause is that unzReadCurrentFile() does not account for pfile_in_zip_read_info->stream.total_out at line 1854 of unzip.c wrapping around (it is a 32-bit variable). So, on line 1860 uTotalOutAfter can be *less* than uTotalOutBefore, propagating the wraparound to uOutThis, which in turn is added to pfile_in_zip_read_info->total_out_64. That has the effect of subtracting 4 GB. | ||||
* | minizip warning fix if MAXU32 already defined. (gvollant) | Mark Adler | 2021-12-31 | 1 | -3/+5 |
| | |||||
* | Fix indentation in minizip's zip.c. | Mark Adler | 2021-07-08 | 1 | -2/+2 |
| | |||||
* | Improve portability of contrib/minizip. | Mark Adler | 2021-02-10 | 4 | -10/+21 |
| | |||||
* | Change version number to 1.2.11.1. | Mark Adler | 2017-01-15 | 1 | -1/+1 |
| | |||||
* | zlib 1.2.11v1.2.11 | Mark Adler | 2017-01-15 | 1 | -1/+1 |
| | |||||
* | Change version number to 1.2.10.1. | Mark Adler | 2017-01-15 | 1 | -1/+1 |
| | |||||
* | zlib 1.2.10v1.2.10 | Mark Adler | 2017-01-02 | 1 | -1/+1 |
| | |||||
* | Change version number to zlib 1.2.9.1. | Mark Adler | 2017-01-01 | 1 | -1/+1 |
| | |||||
* | zlib 1.2.9v1.2.9 | Mark Adler | 2016-12-31 | 1 | -1/+1 |
| | |||||
* | 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 |
| |