1. 11 3月, 2012 2 次提交
  2. 10 3月, 2012 2 次提交
  3. 05 3月, 2012 2 次提交
  4. 04 3月, 2012 3 次提交
  5. 03 3月, 2012 4 次提交
  6. 21 2月, 2012 1 次提交
  7. 20 2月, 2012 3 次提交
  8. 19 2月, 2012 7 次提交
  9. 14 2月, 2012 2 次提交
  10. 13 2月, 2012 3 次提交
  11. 11 2月, 2012 3 次提交
  12. 06 2月, 2012 1 次提交
  13. 05 2月, 2012 2 次提交
  14. 02 2月, 2012 3 次提交
    • M
      Avoid library header include in crc32.c for Z_SOLO. · f9e4edc9
      Mark Adler 提交于
      crc32.c was #including limits.h in order to find a four-byte integer
      type.  It was doing this even if Z_SOLO were defined, violating the
      intent of Z_SOLO, which is to include no library headers and require
      no library functions.  Now crc32.c obeys the intent of Z_SOLO, but
      with the downside that crc32() will be slower than when not compiled
      with Z_SOLO.  This can be remedied manually by typedefing u4 to a
      known four-byte unsigned integer type, and #defining BYFOUR in
      crc32.c.
      f9e4edc9
    • M
      Put gzflags() functionality back in zutil.c. · 55b8b5fe
      Mark Adler 提交于
      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.
      55b8b5fe
    • M
      Include gz_header definition when compiling zlib solo. · a8d23bb6
      Mark Adler 提交于
      a8d23bb6
  15. 31 1月, 2012 1 次提交
  16. 30 1月, 2012 1 次提交