1. 19 2月, 2012 1 次提交
    • M
      Test for existence of strerror. · 6838df92
      Mark Adler 提交于
      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.
      6838df92
  2. 05 2月, 2012 1 次提交
    • M
      Use name in GCC_CLASSIC as C compiler for coverage testing, if set. · 2dadd2fa
      Mark Adler 提交于
      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.
      2dadd2fa
  3. 30 1月, 2012 1 次提交
  4. 29 1月, 2012 1 次提交
  5. 17 1月, 2012 1 次提交
    • M
      Have ./configure use the compiler return code for error indication. · 2d55657c
      Mark Adler 提交于
      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.
      2d55657c
  6. 14 11月, 2011 1 次提交
  7. 10 10月, 2011 1 次提交
    • M
      Add --cover option to ./configure for gcc coverage testing. · d66a3079
      Mark Adler 提交于
      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.
      d66a3079
  8. 07 10月, 2011 1 次提交
    • M
      Add a ./config --solo option to make zlib subset with no libary use · f442c1e8
      Mark Adler 提交于
      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.
      f442c1e8
  9. 12 9月, 2011 1 次提交
  10. 10 9月, 2011 31 次提交