README.Kitware.txt 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. This directory contains a subset of the zlib library (1.2.3) and
  2. some custom changes.
  3. We only include enough of the distribution to provide the functionalities
  4. required.
  5. We would like to thank the zlib team for distributing this library.
  6. http://www.zlib.net
  7. Added Files
  8. -----------
  9. CMakeLists.txt
  10. -Support building with CMake.
  11. zlib.rc
  12. -For MS Windows only: provide a version resource in a dll build so that
  13. when you look at the dll file in Windows explorer, it will show you the
  14. version in the "Version" tab of the file's properties view.
  15. zlib.def
  16. -For MS Windows only: used to explicitly list the exports from dll builds.
  17. cm_zlib_mangle.h
  18. -Mangles symbols exported from the zlib library for use by CMake.
  19. zlibDllConfig.h.in
  20. -Configures the correct value of the ZLIB_DLL define based on the
  21. BUILD_SHARED_LIBS CMake option.
  22. Changed Files
  23. -------------
  24. You can search the code for "KITWARE_ZLIB_CHANGE" to find modifications
  25. vs the original zlib code
  26. zconf.h
  27. -Include cm_zlib_mangle.h (at the top)
  28. -Include cmzlib/zlibDllConfig.h (at the top)
  29. -Changed an #if 0 to #ifdef HAVE_UNISTD_H (near middle)
  30. -Suppress selected compiler warnings (at the bottom)