summaryrefslogtreecommitdiff
path: root/contrib/minizip (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Change version number to 1.2.7.Mark Adler2012-02-121-1/+1
|
* Minor cleanup in contrib/minizip/zip.c [Vollant].Mark Adler2012-02-041-2/+2
|
* Change version number to 1.2.6.1.Mark Adler2012-01-291-1/+1
|
* 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
|
* Protect for long name and extra fields in contrib/minizip [Vollant].Mark Adler2012-01-211-7/+17
|
* Fix bug when compiling minizip with C++ [Vollant].Mark Adler2012-01-211-0/+6
|
* Minor cleanup up contrib/minizip/unzip.c [Vollant].Mark Adler2012-01-211-1/+1
|
* Avoid warning for no encryption in contrib/minizip/zip.c [Vollant].Mark Adler2012-01-211-0/+1
|
* Make version explicit in contrib/minizip/configure.ac [Bosmans].Mark Adler2012-01-201-1/+1
|
* Fix compilation of contrib/minizip on FreeBSD [Márquez].Mark Adler2012-01-161-0/+5
|
* Fix contrib/minizip/zip.c for 64-bit architectures [Dalsnes].Mark Adler2012-01-161-3/+5
|
* Fix large-entry detection in minizip on 64-bit systems [Schiffer].Mark Adler2012-01-163-5/+7
|
* Fix configure.ac for contrib/minizip [Schiffer].Mark Adler2012-01-161-1/+1
|
* Add files in contrib/minizip to aid in building libminizip.Mark Adler2011-11-133-0/+52
| | | | Patch provided by Franz Schrober.
* zlib 1.2.5.1v1.2.5.1Mark Adler2011-09-115-31/+69
|
* zlib 1.2.3.9v1.2.3.9Mark Adler2011-09-0913-208/+211
|
* zlib 1.2.3.8v1.2.3.8Mark Adler2011-09-0919-1139/+474
|
* zlib 1.2.3.6v1.2.3.6Mark Adler2011-09-091-0/+25
|
* zlib 1.2.3.5v1.2.3.5Mark Adler2011-09-0919-1631/+4284
|
* zlib 1.2.3.2v1.2.3.2Mark Adler2011-09-091-0/+2
|
* zlib 1.2.3v1.2.3Mark Adler2011-09-0915-5490/+5490
|
* zlib 1.2.2.3v1.2.2.3Mark Adler2011-09-0915-5449/+5490
|
* zlib 1.2.2v1.2.2Mark Adler2011-09-096-30/+32
|
* zlib 1.2.1.2v1.2.1.2Mark Adler2011-09-0914-39/+485
|
* zlib 1.2.0.6v1.2.0.6Mark Adler2011-09-0912-12/+46
|
* zlib 1.2.0.5v1.2.0.5Mark Adler2011-09-0913-4966/+4967
|
* zlib 1.2.0.3v1.2.0.3Mark Adler2011-09-092-334/+23
|
* zlib 1.2.0.2v1.2.0.2Mark Adler2011-09-0914-4927/+5277
|
* zlib 1.2.0.1v1.2.0.1Mark Adler2011-09-0919-2193/+2987
|
* zlib 1.1.3v1.1.3Mark Adler2011-09-092-45/+47
|
* zlib 1.1.2v1.1.2Mark Adler2011-09-0914-0/+4131