<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zlib/configure, branch v1.2.12</title>
<subtitle>A mirror of https://github.com/madler/zlib.git
</subtitle>
<id>https://git.lua4.win/zlib/atom?h=v1.2.12</id>
<link rel='self' href='https://git.lua4.win/zlib/atom?h=v1.2.12'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/'/>
<updated>2022-03-27T20:47:33+00:00</updated>
<entry>
<title>Check for cc masquerading as gcc or clang in configure.</title>
<updated>2022-03-27T20:47:33+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2022-03-27T20:47:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=e9a52aa129efe3834383e415580716a7c4027f8d'/>
<id>urn:sha1:e9a52aa129efe3834383e415580716a7c4027f8d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Separate out address sanitizing from warnings in configure.</title>
<updated>2022-03-27T08:54:17+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2022-03-27T08:05:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=6847291ea0e3266f9ebf2c24dfe77f114a744d27'/>
<id>urn:sha1:6847291ea0e3266f9ebf2c24dfe77f114a744d27</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Speed up software CRC-32 computation by a factor of 1.5 to 3.</title>
<updated>2018-12-26T20:26:52+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2018-12-11T09:11:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=f8719f5ae5acdc31d3794ddfea8ac963359de41e'/>
<id>urn:sha1:f8719f5ae5acdc31d3794ddfea8ac963359de41e</id>
<content type='text'>
Use the interleaved method of Kadatch and Jenkins in order to make
use of pipelined instructions through multiple ALUs in a single
core. This also speeds up and simplifies the combination of CRCs,
and updates the functions to pre-calculate and use an operator for
CRC combination.
</content>
</entry>
<entry>
<title>Add address checking in clang to -w option of configure.</title>
<updated>2017-02-19T07:07:01+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2017-02-19T07:07:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=be5e3647c4aca626dcfa833ae2455b7af21b60b3'/>
<id>urn:sha1:be5e3647c4aca626dcfa833ae2455b7af21b60b3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Avoid the need for ssize_t.</title>
<updated>2016-12-31T18:06:40+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-12-31T18:03:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=cca27e95cf2bf057b2bbea93702135da3ca7be45'/>
<id>urn:sha1:cca27e95cf2bf057b2bbea93702135da3ca7be45</id>
<content type='text'>
Limit read() and write() requests to sizes that fit in an int.
This allows storing the return value in an int, and avoiding the
need to use or construct an ssize_t type. This is required for
Microsoft C, whose _read and _write functions take an unsigned
request and return an int.
</content>
</entry>
<entry>
<title>Detect clang in cc version.</title>
<updated>2016-12-31T04:00:57+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-12-31T02:58:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=f12d3dc367e51bcefba80217c645fa5de05e699c'/>
<id>urn:sha1:f12d3dc367e51bcefba80217c645fa5de05e699c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix compile option for when z_size_t needs to be a long long.</title>
<updated>2016-12-05T01:19:36+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-12-05T00:50:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=3f8c768745e85d0e63ba306581710c6dc9db0d65'/>
<id>urn:sha1:3f8c768745e85d0e63ba306581710c6dc9db0d65</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Create z_size_t and z_ssize_t types.</title>
<updated>2016-12-04T15:48:48+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-12-03T18:27:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=ca50ebd4dfd08dfd7e8c8bb087278e158cd67720'/>
<id>urn:sha1:ca50ebd4dfd08dfd7e8c8bb087278e158cd67720</id>
<content type='text'>
Normally these are set to size_t and ssize_t. But if they do not
exist, then they are set to the smallest integer type that can
contain a pointer. size_t is unsigned and ssize_t is signed.
</content>
</entry>
<entry>
<title>Add --debug (-d) option to ./configure to define ZLIB_DEBUG.</title>
<updated>2016-12-04T15:39:37+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-10-30T16:33:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=fc130cdd9fcb0ea4decaf003be6ddf4c5dfd5760'/>
<id>urn:sha1:fc130cdd9fcb0ea4decaf003be6ddf4c5dfd5760</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add --warn option to ./configure, instead of environment variable.</title>
<updated>2016-10-12T05:21:04+00:00</updated>
<author>
<name>Mark Adler</name>
<email>madler@alumni.caltech.edu</email>
</author>
<published>2016-10-12T05:21:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/zlib/commit/?id=8b95fa19cd7bb62af05ccec1e408a33ec30d54fc'/>
<id>urn:sha1:8b95fa19cd7bb62af05ccec1e408a33ec30d54fc</id>
<content type='text'>
</content>
</entry>
</feed>
