Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Force the native libtool in Mac OS X to avoid GNU libtool [Beebe]. | Mark Adler | 2012-05-01 | 1 | -1/+1 |
| | |||||
* | Fix location of executable for finding a four-byte integer. | Mark Adler | 2012-04-29 | 1 | -1/+1 |
| | |||||
* | Fix type mismatch between get_crc_table() and crc_table. | Mark Adler | 2012-04-29 | 1 | -0/+27 |
| | | | | | | | | | | | | | crc_table is made using a four-byte integer (when that can be determined). However get_crc_table() returned a pointer to an unsigned long, which could be eight bytes. This fixes that by creating a new z_crc_t type for the crc_table. This type is also used for the BYFOUR crc calculations that depend on a four-byte type. The four-byte type can now be determined by ./configure, which also solves a problem where ./configure --solo would never use BYFOUR. No the Z_U4 #define indicates that four- byte integer was found either by ./configure or by zconf.h. | ||||
* | Remove -R. from Solaris shared build (possible security issue). | Mark Adler | 2012-04-22 | 1 | -1/+1 |
| | |||||
* | Update ./configure for Solaris, support --64 [Mooney]. | Mark Adler | 2012-04-22 | 1 | -9/+22 |
| | |||||
* | Add more comments to configure. | Mark Adler | 2012-04-01 | 1 | -1/+33 |
| | |||||
* | Recognize clang as gcc. | Mark Adler | 2012-03-14 | 1 | -0/+1 |
| | |||||
* | Simplify test and use of gcc hidden attribute. | Mark Adler | 2012-03-03 | 1 | -7/+3 |
| | |||||
* | Improve the detection of no hidden visibility attribute. | Mark Adler | 2012-02-19 | 1 | -2/+14 |
| | |||||
* | Test for existence of strerror. | Mark Adler | 2012-02-18 | 1 | -1/+15 |
| | | | | | | SunOS 4.1 claims that it is __STDC__, but it does not have strerror in string.h. Instead of using __STDC__, this puts a direct test for strerror in configure, and uses that information in gzguts.h. | ||||
* | Use name in GCC_CLASSIC as C compiler for coverage testing, if set. | Mark Adler | 2012-02-04 | 1 | -0/+3 |
| | | | | | | | | Apple removed support for gcov in the default gcc compiler chain, when they moved to llvm. This can be circumvented in XCode 4.2 by using the gcc chain with gcc-4.2. This patch allows setting GCC_CLASSIC to the name of a real gcc executable (e.g. "gcc-4.2") to allow coverage testing. | ||||
* | Use the -m option on ldconfig for BSD systems [Tobias]. | Mark Adler | 2012-01-29 | 1 | -1/+4 |
| | |||||
* | Add the generation of configure.log by ./configure. | Mark Adler | 2012-01-28 | 1 | -100/+159 |
| | |||||
* | Have ./configure use the compiler return code for error indication. | Mark Adler | 2012-01-16 | 1 | -14/+30 |
| | | | | | | | | | | | Previously ./configure would use any output on stderr as an indication that the compilation failed. However if some compiler wrapper uses stderr for some other purpose, e.g. distcc for nodes going down, then ./configure would not properly configure the build. This problem was noted by Mike Frysinger. For backwards compatibility, ./configure will revert to the old way, i.e. checking for anything on stderr, if when it deliberately runs the compiler with an error, a zero exit status is returned. | ||||
* | Split off AR options in Makefile.in and configure. | Mark Adler | 2011-11-13 | 1 | -5/+8 |
| | | | | | Adds ARFLAGS variable for options, where AR is now just the command name. So now $(AR) $(ARFLAGS) is used to build the static library. | ||||
* | Add --cover option to ./configure for gcc coverage testing. | Mark Adler | 2011-10-09 | 1 | -1/+7 |
| | | | | | | | | This adds the -fprofile-arcs and -ftest-coverage options when compiling the source code for the static library. Those same options must then be used when linking the static library into an executable. This updates Makefile.in to remove and .gitignore to ignore the files generated when testing coverage. | ||||
* | Add a ./config --solo option to make zlib subset with no libary use | Mark Adler | 2011-10-07 | 1 | -0/+16 |
| | | | | | | | | A common request has been the ability to compile zlib to require no other libraries. This --solo option provides that ability. The price is that the gz*, compress*, and uncompress functions are eliminated, and that the user must provide memory allocation and free routines to deflate and inflate when initializing. | ||||
* | zlib 1.2.5.1v1.2.5.1 | Mark Adler | 2011-09-11 | 1 | -10/+31 |
| | |||||
* | zlib 1.2.5v1.2.5 | Mark Adler | 2011-09-09 | 1 | -1/+5 |
| | |||||
* | zlib 1.2.4.5v1.2.4.5 | Mark Adler | 2011-09-09 | 1 | -11/+18 |
| | |||||
* | zlib 1.2.4.4v1.2.4.4 | Mark Adler | 2011-09-09 | 1 | -39/+35 |
| | |||||
* | zlib 1.2.4.3v1.2.4.3 | Mark Adler | 2011-09-09 | 1 | -5/+29 |
| | |||||
* | zlib 1.2.4.2v1.2.4.2 | Mark Adler | 2011-09-09 | 1 | -1/+2 |
| | |||||
* | zlib 1.2.4.1v1.2.4.1 | Mark Adler | 2011-09-09 | 1 | -23/+41 |
| | |||||
* | zlib 1.2.4-pre2v1.2.4-pre2 | Mark Adler | 2011-09-09 | 1 | -0/+3 |
| | |||||
* | zlib 1.2.4-pre1v1.2.4-pre1 | Mark Adler | 2011-09-09 | 1 | -2/+2 |
| | |||||
* | zlib 1.2.3.9v1.2.3.9 | Mark Adler | 2011-09-09 | 1 | -4/+4 |
| | |||||
* | zlib 1.2.3.8v1.2.3.8 | Mark Adler | 2011-09-09 | 1 | -5/+11 |
| | |||||
* | zlib 1.2.3.7v1.2.3.7 | Mark Adler | 2011-09-09 | 1 | -21/+7 |
| | |||||
* | zlib 1.2.3.6v1.2.3.6 | Mark Adler | 2011-09-09 | 1 | -19/+6 |
| | |||||
* | zlib 1.2.3.4v1.2.3.4 | Mark Adler | 2011-09-09 | 1 | -67/+73 |
| | |||||
* | zlib 1.2.3.3v1.2.3.3 | Mark Adler | 2011-09-09 | 1 | -11/+38 |
| | |||||
* | zlib 1.2.3.2v1.2.3.2 | Mark Adler | 2011-09-09 | 1 | -6/+35 |
| | |||||
* | zlib 1.2.3.1v1.2.3.1 | Mark Adler | 2011-09-09 | 1 | -21/+64 |
| | |||||
* | zlib 1.2.2.4v1.2.2.4 | Mark Adler | 2011-09-09 | 1 | -1/+14 |
| | |||||
* | zlib 1.2.2.2v1.2.2.2 | Mark Adler | 2011-09-09 | 1 | -1/+4 |
| | |||||
* | zlib 1.2.1.2v1.2.1.2 | Mark Adler | 2011-09-09 | 1 | -4/+2 |
| | |||||
* | zlib 1.2.1v1.2.1 | Mark Adler | 2011-09-09 | 1 | -1/+1 |
| | |||||
* | zlib 1.2.0.8v1.2.0.8 | Mark Adler | 2011-09-09 | 1 | -27/+21 |
| | |||||
* | zlib 1.2.0.7v1.2.0.7 | Mark Adler | 2011-09-09 | 1 | -23/+34 |
| | |||||
* | zlib 1.2.0.5v1.2.0.5 | Mark Adler | 2011-09-09 | 1 | -48/+51 |
| | |||||
* | zlib 1.2.0.4v1.2.0.4 | Mark Adler | 2011-09-09 | 1 | -0/+2 |
| | |||||
* | zlib 1.2.0.2v1.2.0.2 | Mark Adler | 2011-09-09 | 1 | -0/+10 |
| | |||||
* | zlib 1.2.0v1.2.0 | Mark Adler | 2011-09-09 | 1 | -3/+216 |
| | |||||
* | zlib 1.1.3v1.1.3 | Mark Adler | 2011-09-09 | 1 | -8/+57 |
| | |||||
* | zlib 1.1.2v1.1.2 | Mark Adler | 2011-09-09 | 1 | -15/+22 |
| | |||||
* | zlib 1.1.0v1.1.0 | Mark Adler | 2011-09-09 | 1 | -1/+18 |
| | |||||
* | zlib 1.0.9v1.0.9 | Mark Adler | 2011-09-09 | 1 | -1/+10 |
| | |||||
* | zlib 1.0.8v1.0.8 | Mark Adler | 2011-09-09 | 1 | -15/+24 |
| | |||||
* | zlib 1.0.7v1.0.7 | Mark Adler | 2011-09-09 | 1 | -17/+52 |
| |