aboutsummaryrefslogtreecommitdiff
path: root/contrib/vstudio (follow)
Commit message (Collapse)AuthorAgeFilesLines
* zlib 1.3.1v1.3.1masterMark Adler2024-01-2213-31/+31
|
* Update version numbers and year in contrib/vstudio/vc17.Mark Adler2023-08-192-5/+5
|
* Rename contrib/vstudio/vc143 to vc17.Mark Adler2023-08-199-0/+0
| | | | | This makes it consistent with the other vstudio projects, which use the version number.
* Add VS2022 project files.AraHaan2023-08-1910-1/+3549
| | | | Also replaced Itanium with ARM and ARM64 configurations.
* Remove carriage returns from contrib/vstudio/readme.txt.Mark Adler2023-08-191-75/+75
|
* Change version number on develop branch to 1.3.0.1.Mark Adler2023-08-186-16/+16
|
* zlib 1.3v1.3Mark Adler2023-08-1811-26/+26
|
* Change version number on develop branch to 1.2.13.1.Mark Adler2022-10-156-16/+16
|
* zlib 1.2.13v1.2.13Mark Adler2022-10-126-16/+16
|
* Remove deleted assembler code references.Mark Adler2022-10-0625-542/+188
| | | | | | The code was removed, but the builds that used the code were not updated. This fixes that. Thanks to Adenilson and toxieainc for the patches.
* Change version number on develop branch to 1.2.12.1.Mark Adler2022-03-276-16/+16
|
* zlib 1.2.12v1.2.12Mark Adler2022-03-2711-21/+46
|
* Change version number to 1.2.11.1.Mark Adler2017-01-156-16/+16
|
* zlib 1.2.11v1.2.11Mark Adler2017-01-156-16/+16
|
* Delete user-specific Visual Studio project files.Mark Adler2017-01-156-24/+0
|
* Change version number to 1.2.10.1.Mark Adler2017-01-156-16/+16
|
* zlib 1.2.10v1.2.10Mark Adler2017-01-026-16/+16
|
* Change version number to zlib 1.2.9.1.Mark Adler2017-01-016-22/+22
|
* Fix some stray 1.2.8.1 version numbers.Mark Adler2017-01-012-4/+4
|
* zlib 1.2.9v1.2.9Mark Adler2016-12-3111-304/+354
|
* Update Visual Studio project files (AraHaan).Mark Adler2016-12-3131-13/+5706
|
* Change version number to 1.2.8.1.Mark Adler2013-05-027-13/+13
|
* Fix mixed line endings in contrib/vstudio.Mark Adler2013-04-284-27/+27
|
* Clean up contrib/vstudio [Roß].Mark Adler2013-04-2821-1138/+592
|
* Change version number to 1.2.8.Mark Adler2013-04-289-17/+17
|
* 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-135-9/+9
|
* Change version number to 1.2.7.2.Mark Adler2013-04-135-11/+11
|
* 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-2215-0/+3334
|
* Simplify contrib/vstudio/vc10 with 'd' suffix.Fredrik Orderud2013-02-231-26/+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.
* Add inflateGetDictionary() function.Mark Adler2012-05-262-0/+6
|
* Change version number to 1.2.7.1.Mark Adler2012-05-025-9/+9
|
* 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-122-6/+6
|
* 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-292-6/+6
|
* Fix function numbers for gzgetc_ in zlibvc.def files.Mark Adler2012-01-162-2/+2
|
* Change version number to 1.2.6.Mark Adler2012-01-162-8/+8
|
* Restore gzgetc function for binary compatibility.Mark Adler2011-12-182-0/+2
| | | | Newly compiled applications will use the gzgetc macro.
* Change version numbers to 1.2.5.3.Mark Adler2011-12-182-6/+6
|
* Enable dictionary setting in middle of stream, and keeping the dictionary.Mark Adler2011-12-082-0/+2
| | | | | | | | | | | | | | | | | | | This patch adds the deflateResetKeep() function to retain the sliding window for the next deflate operation, and fixes an inflateResetKeep() problem that came from inflate() not updating the window when the stream completed. This enables constructing and decompressing a series of concatenated deflate streams where each can depend on the history of uncompressed data that precedes it. This generalizes deflateSetDictionary() and inflateSetDictionary() to permit setting the dictionary in the middle of a stream for raw deflate and inflate. This in combination with the Keep functions enables a scheme for updating files block by block with the transmission of compressed data, where blocks are sent with deflateResetKeep() to retain history for better compression, and deflateSetDictionary() is used for blocks already present at the receiver to skip compression but insert that data in the history, again for better compression. The corresponding inflate calls are done on the receiver side.
* Add undocumented inflateResetKeep() function for CAB file decoding.Mark Adler2011-10-072-8/+10
| | | | | | | | The Microsoft CAB file format compresses each block with completed deflate streams that depend on the sliding window history of the previous block in order to decode. inflateResetKeep() does what inflateReset() does, except the sliding window history from the previous inflate operation is retained.
* Merge vestigial vsnprintf determination from zutil.h to gzguts.h.Mark Adler2011-10-022-2/+8
| | | | | | | | | This also moves some of the same from zconf.h to gzguts.h. A new function, gzflags(), was created to pass the compilation flags related to vsnprintf usage back to zlibCompileFlags() in zutil.c. In the process, various compiler configuration files were updated to include gzflags(), as well as the new gzgetc_() function added when the gzgetc() macro was introduced in a previous patch.