laag-libpng 1.6.34.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (452) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +57 -0
  3. data/LICENSE.txt +133 -0
  4. data/README.org +34 -0
  5. data/ext/laag/libpng/extconf.rb +13 -0
  6. data/laag-libpng.gemspec +20 -0
  7. data/lib/laag/libpng.rb +29 -0
  8. data/vendor/git.code.sf.net/p/libpng/code/ANNOUNCE +35 -0
  9. data/vendor/git.code.sf.net/p/libpng/code/CHANGES +6051 -0
  10. data/vendor/git.code.sf.net/p/libpng/code/CMakeLists.txt +945 -0
  11. data/vendor/git.code.sf.net/p/libpng/code/INSTALL +465 -0
  12. data/vendor/git.code.sf.net/p/libpng/code/LICENSE +133 -0
  13. data/vendor/git.code.sf.net/p/libpng/code/Makefile.am +392 -0
  14. data/vendor/git.code.sf.net/p/libpng/code/README +222 -0
  15. data/vendor/git.code.sf.net/p/libpng/code/TODO +30 -0
  16. data/vendor/git.code.sf.net/p/libpng/code/arm/arm_init.c +135 -0
  17. data/vendor/git.code.sf.net/p/libpng/code/arm/filter_neon.S +253 -0
  18. data/vendor/git.code.sf.net/p/libpng/code/arm/filter_neon_intrinsics.c +387 -0
  19. data/vendor/git.code.sf.net/p/libpng/code/autogen.sh +225 -0
  20. data/vendor/git.code.sf.net/p/libpng/code/configure.ac +533 -0
  21. data/vendor/git.code.sf.net/p/libpng/code/contrib/README.txt +5 -0
  22. data/vendor/git.code.sf.net/p/libpng/code/contrib/arm-neon/README +83 -0
  23. data/vendor/git.code.sf.net/p/libpng/code/contrib/arm-neon/android-ndk.c +39 -0
  24. data/vendor/git.code.sf.net/p/libpng/code/contrib/arm-neon/linux-auxv.c +120 -0
  25. data/vendor/git.code.sf.net/p/libpng/code/contrib/arm-neon/linux.c +161 -0
  26. data/vendor/git.code.sf.net/p/libpng/code/contrib/conftest/README +49 -0
  27. data/vendor/git.code.sf.net/p/libpng/code/contrib/conftest/pngcp.dfa +57 -0
  28. data/vendor/git.code.sf.net/p/libpng/code/contrib/conftest/read.dfa +58 -0
  29. data/vendor/git.code.sf.net/p/libpng/code/contrib/conftest/s_read.dfa +35 -0
  30. data/vendor/git.code.sf.net/p/libpng/code/contrib/conftest/s_write.dfa +33 -0
  31. data/vendor/git.code.sf.net/p/libpng/code/contrib/conftest/simple.dfa +36 -0
  32. data/vendor/git.code.sf.net/p/libpng/code/contrib/conftest/write.dfa +45 -0
  33. data/vendor/git.code.sf.net/p/libpng/code/contrib/examples/README.txt +24 -0
  34. data/vendor/git.code.sf.net/p/libpng/code/contrib/examples/iccfrompng.c +185 -0
  35. data/vendor/git.code.sf.net/p/libpng/code/contrib/examples/pngpixel.c +371 -0
  36. data/vendor/git.code.sf.net/p/libpng/code/contrib/examples/pngtopng.c +98 -0
  37. data/vendor/git.code.sf.net/p/libpng/code/contrib/examples/simpleover.c +648 -0
  38. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/COPYING +340 -0
  39. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/LICENSE +50 -0
  40. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/Makefile.mingw32 +131 -0
  41. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/Makefile.sgi +105 -0
  42. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/Makefile.unx +134 -0
  43. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/Makefile.w32 +114 -0
  44. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/README +186 -0
  45. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/makevms.com +132 -0
  46. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/readpng.c +323 -0
  47. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/readpng.h +88 -0
  48. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/readpng2.c +521 -0
  49. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/readpng2.h +116 -0
  50. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/readppm.c +188 -0
  51. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/rpng-win.c +735 -0
  52. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/rpng-x.c +911 -0
  53. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/rpng2-win.c +1261 -0
  54. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/rpng2-x.c +2143 -0
  55. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/toucan.png +0 -0
  56. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/wpng.c +865 -0
  57. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/writepng.c +401 -0
  58. data/vendor/git.code.sf.net/p/libpng/code/contrib/gregbook/writepng.h +133 -0
  59. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/fakepng.c +65 -0
  60. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/gentests.sh +102 -0
  61. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/makepng.c +1941 -0
  62. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/pngimage.c +1712 -0
  63. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/pngstest-errors.h +165 -0
  64. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/pngstest.c +3829 -0
  65. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/pngunknown.c +1294 -0
  66. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/pngvalid.c +12230 -0
  67. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/readpng.c +115 -0
  68. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/tarith.c +999 -0
  69. data/vendor/git.code.sf.net/p/libpng/code/contrib/libtests/timepng.c +608 -0
  70. data/vendor/git.code.sf.net/p/libpng/code/contrib/mips-msa/README +83 -0
  71. data/vendor/git.code.sf.net/p/libpng/code/contrib/mips-msa/linux.c +64 -0
  72. data/vendor/git.code.sf.net/p/libpng/code/contrib/oss-fuzz/Dockerfile +24 -0
  73. data/vendor/git.code.sf.net/p/libpng/code/contrib/oss-fuzz/README.txt +37 -0
  74. data/vendor/git.code.sf.net/p/libpng/code/contrib/oss-fuzz/build.sh +50 -0
  75. data/vendor/git.code.sf.net/p/libpng/code/contrib/oss-fuzz/libpng_read_fuzzer.cc +180 -0
  76. data/vendor/git.code.sf.net/p/libpng/code/contrib/oss-fuzz/libpng_read_fuzzer.options +2 -0
  77. data/vendor/git.code.sf.net/p/libpng/code/contrib/oss-fuzz/newcc +190 -0
  78. data/vendor/git.code.sf.net/p/libpng/code/contrib/oss-fuzz/png.dict +39 -0
  79. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/README +5 -0
  80. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/decoder/README +10 -0
  81. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/decoder/makefile +151 -0
  82. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/decoder/pngusr.dfa +40 -0
  83. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/decoder/pngusr.h +23 -0
  84. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/encoder/README +10 -0
  85. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/encoder/makefile +150 -0
  86. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/encoder/pngusr.dfa +39 -0
  87. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/encoder/pngusr.h +23 -0
  88. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/preader/README +15 -0
  89. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/preader/makefile +166 -0
  90. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/preader/pngusr.dfa +40 -0
  91. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminim/preader/pngusr.h +23 -0
  92. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/README +153 -0
  93. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/makefile.std +66 -0
  94. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/makefile.tc3 +38 -0
  95. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/makevms.com +92 -0
  96. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/png2pnm.bat +41 -0
  97. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/png2pnm.c +460 -0
  98. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/png2pnm.sh +42 -0
  99. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/pngminus.bat +4 -0
  100. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/pngminus.sh +5 -0
  101. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/pnm2png.bat +41 -0
  102. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/pnm2png.c +638 -0
  103. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngminus/pnm2png.sh +42 -0
  104. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/README +105 -0
  105. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn0g01.png +0 -0
  106. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn0g02.png +0 -0
  107. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn0g04.png +0 -0
  108. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn0g08.png +0 -0
  109. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn0g16.png +0 -0
  110. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn2c08.png +0 -0
  111. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn2c16.png +0 -0
  112. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn3p01.png +0 -0
  113. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn3p02.png +0 -0
  114. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn3p04.png +0 -0
  115. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn3p08.png +0 -0
  116. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn4a08.png +0 -0
  117. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn4a16.png +0 -0
  118. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn6a08.png +0 -0
  119. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/basn6a16.png +0 -0
  120. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbbn0g01.png +0 -0
  121. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbbn0g02.png +0 -0
  122. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbbn0g04.png +0 -0
  123. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbbn2c16.png +0 -0
  124. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbbn3p08.png +0 -0
  125. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbgn2c16.png +0 -0
  126. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbgn3p08.png +0 -0
  127. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbrn2c08.png +0 -0
  128. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbwn0g16.png +0 -0
  129. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbwn3p08.png +0 -0
  130. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftbyn3p08.png +0 -0
  131. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftp0n0g08.png +0 -0
  132. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftp0n2c08.png +0 -0
  133. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftp0n3p08.png +0 -0
  134. data/vendor/git.code.sf.net/p/libpng/code/contrib/pngsuite/ftp1n3p08.png +0 -0
  135. data/vendor/git.code.sf.net/p/libpng/code/contrib/powerpc-vsx/README +81 -0
  136. data/vendor/git.code.sf.net/p/libpng/code/contrib/powerpc-vsx/linux.c +57 -0
  137. data/vendor/git.code.sf.net/p/libpng/code/contrib/powerpc-vsx/linux_aux.c +36 -0
  138. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/bad_iCCP.png +0 -0
  139. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/badadler.png +0 -0
  140. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/badcrc.png +0 -0
  141. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/empty_ancillary_chunks.png +0 -0
  142. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_IDAT.png +0 -0
  143. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_bKGD_chunk.png +0 -0
  144. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_cHRM_chunk.png +0 -0
  145. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_eXIf_chunk.png +0 -0
  146. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_gAMA_chunk.png +0 -0
  147. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_hIST_chunk.png +0 -0
  148. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_iCCP_chunk.png +0 -0
  149. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_iTXt_chunk.png +0 -0
  150. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_juNK_unsafe_to_copy.png +0 -0
  151. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_juNk_safe_to_copy.png +0 -0
  152. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_pCAL_chunk.png +0 -0
  153. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_pHYs_chunk.png +0 -0
  154. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_sCAL_chunk.png +0 -0
  155. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_sPLT_chunk.png +0 -0
  156. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_sRGB_chunk.png +0 -0
  157. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_sTER_chunk.png +0 -0
  158. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_tEXt_chunk.png +0 -0
  159. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_tIME_chunk.png +0 -0
  160. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/crashers/huge_zTXt_chunk.png +0 -0
  161. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-1-1.8-tRNS.png +0 -0
  162. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-1-1.8.png +0 -0
  163. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-1-linear-tRNS.png +0 -0
  164. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-1-linear.png +0 -0
  165. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-1-sRGB-tRNS.png +0 -0
  166. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-1-sRGB.png +0 -0
  167. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-1-tRNS.png +0 -0
  168. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-1.png +0 -0
  169. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-16-1.8-tRNS.png +0 -0
  170. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-16-1.8.png +0 -0
  171. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-16-linear-tRNS.png +0 -0
  172. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-16-linear.png +0 -0
  173. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-16-sRGB-tRNS.png +0 -0
  174. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-16-sRGB.png +0 -0
  175. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-16-tRNS.png +0 -0
  176. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-16.png +0 -0
  177. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-2-1.8-tRNS.png +0 -0
  178. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-2-1.8.png +0 -0
  179. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-2-linear-tRNS.png +0 -0
  180. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-2-linear.png +0 -0
  181. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-2-sRGB-tRNS.png +0 -0
  182. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-2-sRGB.png +0 -0
  183. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-2-tRNS.png +0 -0
  184. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-2.png +0 -0
  185. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-4-1.8-tRNS.png +0 -0
  186. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-4-1.8.png +0 -0
  187. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-4-linear-tRNS.png +0 -0
  188. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-4-linear.png +0 -0
  189. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-4-sRGB-tRNS.png +0 -0
  190. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-4-sRGB.png +0 -0
  191. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-4-tRNS.png +0 -0
  192. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-4.png +0 -0
  193. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-8-1.8-tRNS.png +0 -0
  194. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-8-1.8.png +0 -0
  195. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-8-linear-tRNS.png +0 -0
  196. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-8-linear.png +0 -0
  197. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-8-sRGB-tRNS.png +0 -0
  198. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-8-sRGB.png +0 -0
  199. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-8-tRNS.png +0 -0
  200. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-8.png +0 -0
  201. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-alpha-16-1.8.png +0 -0
  202. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-alpha-16-linear.png +0 -0
  203. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-alpha-16-sRGB.png +0 -0
  204. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-alpha-16.png +0 -0
  205. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-alpha-8-1.8.png +0 -0
  206. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-alpha-8-linear.png +0 -0
  207. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-alpha-8-sRGB.png +0 -0
  208. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/gray-alpha-8.png +0 -0
  209. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/makepngs.sh +94 -0
  210. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-1-1.8-tRNS.png +0 -0
  211. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-1-1.8.png +0 -0
  212. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-1-linear-tRNS.png +0 -0
  213. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-1-linear.png +0 -0
  214. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-1-sRGB-tRNS.png +0 -0
  215. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-1-sRGB.png +0 -0
  216. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-1-tRNS.png +0 -0
  217. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-1.png +0 -0
  218. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-2-1.8-tRNS.png +0 -0
  219. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-2-1.8.png +0 -0
  220. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-2-linear-tRNS.png +0 -0
  221. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-2-linear.png +0 -0
  222. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-2-sRGB-tRNS.png +0 -0
  223. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-2-sRGB.png +0 -0
  224. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-2-tRNS.png +0 -0
  225. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-2.png +0 -0
  226. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-4-1.8-tRNS.png +0 -0
  227. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-4-1.8.png +0 -0
  228. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-4-linear-tRNS.png +0 -0
  229. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-4-linear.png +0 -0
  230. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-4-sRGB-tRNS.png +0 -0
  231. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-4-sRGB.png +0 -0
  232. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-4-tRNS.png +0 -0
  233. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-4.png +0 -0
  234. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-8-1.8-tRNS.png +0 -0
  235. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-8-1.8.png +0 -0
  236. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-8-linear-tRNS.png +0 -0
  237. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-8-linear.png +0 -0
  238. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-8-sRGB-tRNS.png +0 -0
  239. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-8-sRGB.png +0 -0
  240. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-8-tRNS.png +0 -0
  241. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/palette-8.png +0 -0
  242. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-16-1.8-tRNS.png +0 -0
  243. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-16-1.8.png +0 -0
  244. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-16-linear-tRNS.png +0 -0
  245. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-16-linear.png +0 -0
  246. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-16-sRGB-tRNS.png +0 -0
  247. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-16-sRGB.png +0 -0
  248. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-16-tRNS.png +0 -0
  249. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-16.png +0 -0
  250. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-8-1.8-tRNS.png +0 -0
  251. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-8-1.8.png +0 -0
  252. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-8-linear-tRNS.png +0 -0
  253. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-8-linear.png +0 -0
  254. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-8-sRGB-tRNS.png +0 -0
  255. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-8-sRGB.png +0 -0
  256. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-8-tRNS.png +0 -0
  257. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-8.png +0 -0
  258. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-alpha-16-1.8.png +0 -0
  259. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-alpha-16-linear.png +0 -0
  260. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-alpha-16-sRGB.png +0 -0
  261. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-alpha-16.png +0 -0
  262. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-alpha-8-1.8.png +0 -0
  263. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-alpha-8-linear.png +0 -0
  264. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-alpha-8-sRGB.png +0 -0
  265. data/vendor/git.code.sf.net/p/libpng/code/contrib/testpngs/rgb-alpha-8.png +0 -0
  266. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/README.txt +27 -0
  267. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/checksum-icc.c +102 -0
  268. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/chkfmt +144 -0
  269. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/cvtcolor.c +188 -0
  270. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/genpng.c +881 -0
  271. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/intgamma.sh +110 -0
  272. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/makesRGB.c +430 -0
  273. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/png-fix-itxt.c +164 -0
  274. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/pngcp.c +2453 -0
  275. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/pngfix.c +4049 -0
  276. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/reindent +25 -0
  277. data/vendor/git.code.sf.net/p/libpng/code/contrib/tools/sRGB.h +48 -0
  278. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/PngFile.c +455 -0
  279. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/PngFile.h +30 -0
  280. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/README.txt +61 -0
  281. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/VisualPng.c +978 -0
  282. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/VisualPng.dsp +147 -0
  283. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/VisualPng.dsw +29 -0
  284. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/VisualPng.ico +0 -0
  285. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/VisualPng.png +0 -0
  286. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/VisualPng.rc +152 -0
  287. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/cexcept.h +248 -0
  288. data/vendor/git.code.sf.net/p/libpng/code/contrib/visupng/resource.h +23 -0
  289. data/vendor/git.code.sf.net/p/libpng/code/example.c +1066 -0
  290. data/vendor/git.code.sf.net/p/libpng/code/intel/filter_sse2_intrinsics.c +406 -0
  291. data/vendor/git.code.sf.net/p/libpng/code/intel/intel_init.c +53 -0
  292. data/vendor/git.code.sf.net/p/libpng/code/libpng-config.in +127 -0
  293. data/vendor/git.code.sf.net/p/libpng/code/libpng-manual.txt +5464 -0
  294. data/vendor/git.code.sf.net/p/libpng/code/libpng.3 +6249 -0
  295. data/vendor/git.code.sf.net/p/libpng/code/libpng.pc.in +12 -0
  296. data/vendor/git.code.sf.net/p/libpng/code/libpngpf.3 +18 -0
  297. data/vendor/git.code.sf.net/p/libpng/code/mips/filter_msa_intrinsics.c +807 -0
  298. data/vendor/git.code.sf.net/p/libpng/code/mips/mips_init.c +129 -0
  299. data/vendor/git.code.sf.net/p/libpng/code/png.5 +74 -0
  300. data/vendor/git.code.sf.net/p/libpng/code/png.c +4614 -0
  301. data/vendor/git.code.sf.net/p/libpng/code/png.h +3278 -0
  302. data/vendor/git.code.sf.net/p/libpng/code/pngbar.jpg +0 -0
  303. data/vendor/git.code.sf.net/p/libpng/code/pngbar.png +0 -0
  304. data/vendor/git.code.sf.net/p/libpng/code/pngconf.h +622 -0
  305. data/vendor/git.code.sf.net/p/libpng/code/pngdebug.h +153 -0
  306. data/vendor/git.code.sf.net/p/libpng/code/pngerror.c +963 -0
  307. data/vendor/git.code.sf.net/p/libpng/code/pngget.c +1248 -0
  308. data/vendor/git.code.sf.net/p/libpng/code/pnginfo.h +267 -0
  309. data/vendor/git.code.sf.net/p/libpng/code/pngmem.c +284 -0
  310. data/vendor/git.code.sf.net/p/libpng/code/pngnow.png +0 -0
  311. data/vendor/git.code.sf.net/p/libpng/code/pngpread.c +1096 -0
  312. data/vendor/git.code.sf.net/p/libpng/code/pngpriv.h +2120 -0
  313. data/vendor/git.code.sf.net/p/libpng/code/pngread.c +4219 -0
  314. data/vendor/git.code.sf.net/p/libpng/code/pngrio.c +120 -0
  315. data/vendor/git.code.sf.net/p/libpng/code/pngrtran.c +5010 -0
  316. data/vendor/git.code.sf.net/p/libpng/code/pngrutil.c +4661 -0
  317. data/vendor/git.code.sf.net/p/libpng/code/pngset.c +1802 -0
  318. data/vendor/git.code.sf.net/p/libpng/code/pngstruct.h +483 -0
  319. data/vendor/git.code.sf.net/p/libpng/code/pngtest.c +2156 -0
  320. data/vendor/git.code.sf.net/p/libpng/code/pngtest.png +0 -0
  321. data/vendor/git.code.sf.net/p/libpng/code/pngtrans.c +864 -0
  322. data/vendor/git.code.sf.net/p/libpng/code/pngusr.dfa +14 -0
  323. data/vendor/git.code.sf.net/p/libpng/code/pngwio.c +168 -0
  324. data/vendor/git.code.sf.net/p/libpng/code/pngwrite.c +2396 -0
  325. data/vendor/git.code.sf.net/p/libpng/code/pngwtran.c +576 -0
  326. data/vendor/git.code.sf.net/p/libpng/code/pngwutil.c +2784 -0
  327. data/vendor/git.code.sf.net/p/libpng/code/powerpc/filter_vsx_intrinsics.c +767 -0
  328. data/vendor/git.code.sf.net/p/libpng/code/powerpc/powerpc_init.c +125 -0
  329. data/vendor/git.code.sf.net/p/libpng/code/projects/owatcom/libpng.tgt +383 -0
  330. data/vendor/git.code.sf.net/p/libpng/code/projects/owatcom/libpng.wpj +112 -0
  331. data/vendor/git.code.sf.net/p/libpng/code/projects/owatcom/pngconfig.mak +160 -0
  332. data/vendor/git.code.sf.net/p/libpng/code/projects/owatcom/pngstest.tgt +219 -0
  333. data/vendor/git.code.sf.net/p/libpng/code/projects/owatcom/pngtest.tgt +179 -0
  334. data/vendor/git.code.sf.net/p/libpng/code/projects/owatcom/pngvalid.tgt +210 -0
  335. data/vendor/git.code.sf.net/p/libpng/code/projects/visualc71/PRJ0041.mak +21 -0
  336. data/vendor/git.code.sf.net/p/libpng/code/projects/visualc71/README.txt +58 -0
  337. data/vendor/git.code.sf.net/p/libpng/code/projects/visualc71/README_zlib.txt +44 -0
  338. data/vendor/git.code.sf.net/p/libpng/code/projects/visualc71/libpng.sln +60 -0
  339. data/vendor/git.code.sf.net/p/libpng/code/projects/visualc71/libpng.vcproj +419 -0
  340. data/vendor/git.code.sf.net/p/libpng/code/projects/visualc71/pngtest.vcproj +267 -0
  341. data/vendor/git.code.sf.net/p/libpng/code/projects/visualc71/zlib.vcproj +391 -0
  342. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/README.txt +97 -0
  343. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/libpng/libpng.vcxproj +234 -0
  344. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/pnglibconf/pnglibconf.vcxproj +61 -0
  345. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/pngstest/pngstest.vcxproj +219 -0
  346. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/pngtest/pngtest.vcxproj +220 -0
  347. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/pngunknown/pngunknown.vcxproj +219 -0
  348. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/pngvalid/pngvalid.vcxproj +219 -0
  349. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/vstudio.sln +109 -0
  350. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/zlib/zlib.vcxproj +175 -0
  351. data/vendor/git.code.sf.net/p/libpng/code/projects/vstudio/zlib.props +58 -0
  352. data/vendor/git.code.sf.net/p/libpng/code/scripts/README.txt +86 -0
  353. data/vendor/git.code.sf.net/p/libpng/code/scripts/SCOPTIONS.ppc +7 -0
  354. data/vendor/git.code.sf.net/p/libpng/code/scripts/checksym.awk +173 -0
  355. data/vendor/git.code.sf.net/p/libpng/code/scripts/def.c +29 -0
  356. data/vendor/git.code.sf.net/p/libpng/code/scripts/descrip.mms +52 -0
  357. data/vendor/git.code.sf.net/p/libpng/code/scripts/dfn.awk +203 -0
  358. data/vendor/git.code.sf.net/p/libpng/code/scripts/genchk.cmake.in +37 -0
  359. data/vendor/git.code.sf.net/p/libpng/code/scripts/genout.cmake.in +93 -0
  360. data/vendor/git.code.sf.net/p/libpng/code/scripts/gensrc.cmake.in +138 -0
  361. data/vendor/git.code.sf.net/p/libpng/code/scripts/intprefix.c +22 -0
  362. data/vendor/git.code.sf.net/p/libpng/code/scripts/libpng-config-body.in +96 -0
  363. data/vendor/git.code.sf.net/p/libpng/code/scripts/libpng-config-head.in +24 -0
  364. data/vendor/git.code.sf.net/p/libpng/code/scripts/libpng.pc.in +10 -0
  365. data/vendor/git.code.sf.net/p/libpng/code/scripts/macro.lst +3 -0
  366. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.32sunu +244 -0
  367. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.64sunu +244 -0
  368. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.acorn +57 -0
  369. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.aix +116 -0
  370. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.amiga +58 -0
  371. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.atari +71 -0
  372. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.bc32 +158 -0
  373. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.beos +222 -0
  374. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.bor +170 -0
  375. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.cegcc +116 -0
  376. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.darwin +225 -0
  377. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.dec +210 -0
  378. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.dj2 +72 -0
  379. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.freebsd +69 -0
  380. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.gcc +87 -0
  381. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.hp64 +231 -0
  382. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.hpgcc +234 -0
  383. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.hpux +229 -0
  384. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.ibmc +90 -0
  385. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.intel +115 -0
  386. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.knr +116 -0
  387. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.linux +247 -0
  388. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.linux-opt +265 -0
  389. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.mips +103 -0
  390. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.msc +100 -0
  391. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.msys +201 -0
  392. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.ne12bsd +56 -0
  393. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.netbsd +56 -0
  394. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.openbsd +88 -0
  395. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.sco +226 -0
  396. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.sggcc +236 -0
  397. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.sgi +237 -0
  398. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.so9 +247 -0
  399. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.solaris +244 -0
  400. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.solaris-x86 +243 -0
  401. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.std +134 -0
  402. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.sunos +115 -0
  403. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.tc3 +100 -0
  404. data/vendor/git.code.sf.net/p/libpng/code/scripts/makefile.vcwin32 +113 -0
  405. data/vendor/git.code.sf.net/p/libpng/code/scripts/makevms.com +142 -0
  406. data/vendor/git.code.sf.net/p/libpng/code/scripts/options.awk +898 -0
  407. data/vendor/git.code.sf.net/p/libpng/code/scripts/pnglibconf.dfa +919 -0
  408. data/vendor/git.code.sf.net/p/libpng/code/scripts/pnglibconf.h.prebuilt +220 -0
  409. data/vendor/git.code.sf.net/p/libpng/code/scripts/pnglibconf.mak +55 -0
  410. data/vendor/git.code.sf.net/p/libpng/code/scripts/pngwin.rc +112 -0
  411. data/vendor/git.code.sf.net/p/libpng/code/scripts/prefix.c +24 -0
  412. data/vendor/git.code.sf.net/p/libpng/code/scripts/smakefile.ppc +34 -0
  413. data/vendor/git.code.sf.net/p/libpng/code/scripts/sym.c +15 -0
  414. data/vendor/git.code.sf.net/p/libpng/code/scripts/symbols.c +58 -0
  415. data/vendor/git.code.sf.net/p/libpng/code/scripts/symbols.def +256 -0
  416. data/vendor/git.code.sf.net/p/libpng/code/scripts/test.cmake.in +31 -0
  417. data/vendor/git.code.sf.net/p/libpng/code/scripts/vers.c +19 -0
  418. data/vendor/git.code.sf.net/p/libpng/code/tests/pngimage-full +2 -0
  419. data/vendor/git.code.sf.net/p/libpng/code/tests/pngimage-quick +2 -0
  420. data/vendor/git.code.sf.net/p/libpng/code/tests/pngstest +54 -0
  421. data/vendor/git.code.sf.net/p/libpng/code/tests/pngstest-1.8 +2 -0
  422. data/vendor/git.code.sf.net/p/libpng/code/tests/pngstest-1.8-alpha +2 -0
  423. data/vendor/git.code.sf.net/p/libpng/code/tests/pngstest-linear +2 -0
  424. data/vendor/git.code.sf.net/p/libpng/code/tests/pngstest-linear-alpha +2 -0
  425. data/vendor/git.code.sf.net/p/libpng/code/tests/pngstest-none +2 -0
  426. data/vendor/git.code.sf.net/p/libpng/code/tests/pngstest-none-alpha +2 -0
  427. data/vendor/git.code.sf.net/p/libpng/code/tests/pngstest-sRGB +2 -0
  428. data/vendor/git.code.sf.net/p/libpng/code/tests/pngstest-sRGB-alpha +2 -0
  429. data/vendor/git.code.sf.net/p/libpng/code/tests/pngtest +2 -0
  430. data/vendor/git.code.sf.net/p/libpng/code/tests/pngtest-badpngs +13 -0
  431. data/vendor/git.code.sf.net/p/libpng/code/tests/pngunknown-IDAT +2 -0
  432. data/vendor/git.code.sf.net/p/libpng/code/tests/pngunknown-discard +2 -0
  433. data/vendor/git.code.sf.net/p/libpng/code/tests/pngunknown-if-safe +2 -0
  434. data/vendor/git.code.sf.net/p/libpng/code/tests/pngunknown-sAPI +2 -0
  435. data/vendor/git.code.sf.net/p/libpng/code/tests/pngunknown-sTER +2 -0
  436. data/vendor/git.code.sf.net/p/libpng/code/tests/pngunknown-save +2 -0
  437. data/vendor/git.code.sf.net/p/libpng/code/tests/pngunknown-vpAg +2 -0
  438. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-gamma-16-to-8 +2 -0
  439. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-gamma-alpha-mode +2 -0
  440. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-gamma-background +2 -0
  441. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-gamma-expand16-alpha-mode +2 -0
  442. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-gamma-expand16-background +2 -0
  443. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-gamma-expand16-transform +2 -0
  444. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-gamma-sbit +2 -0
  445. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-gamma-threshold +2 -0
  446. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-gamma-transform +2 -0
  447. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-progressive-interlace-standard +2 -0
  448. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-progressive-size +2 -0
  449. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-progressive-standard +2 -0
  450. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-standard +2 -0
  451. data/vendor/git.code.sf.net/p/libpng/code/tests/pngvalid-transform +2 -0
  452. metadata +515 -0
@@ -0,0 +1,465 @@
1
+
2
+ Installing libpng
3
+
4
+ Contents
5
+
6
+ I. Simple installation
7
+ II. Rebuilding the configure scripts
8
+ III. Using scripts/makefile*
9
+ IV. Using cmake
10
+ V. Directory structure
11
+ VI. Building with project files
12
+ VII. Building with makefiles
13
+ VIII. Configuring libpng for 16-bit platforms
14
+ IX. Configuring for DOS
15
+ X. Configuring for Medium Model
16
+ XI. Prepending a prefix to exported symbols
17
+ XII. Configuring for compiler xxx:
18
+ XIII. Removing unwanted object code
19
+ XIV. Enabling or disabling hardware optimizations
20
+ XV. Changes to the build and configuration of libpng in libpng-1.5.x
21
+ XVI. Setjmp/longjmp issues
22
+ XVII. Common linking failures
23
+ XVIII. Other sources of information about libpng
24
+
25
+ I. Simple installation
26
+
27
+ On Unix/Linux and similar systems, you can simply type
28
+
29
+ ./configure [--prefix=/path]
30
+ make check
31
+ make install
32
+
33
+ and ignore the rest of this document. "/path" is the path to the directory
34
+ where you want to install the libpng "lib", "include", and "bin"
35
+ subdirectories.
36
+
37
+ If you downloaded a GIT clone, you will need to run ./autogen.sh before
38
+ running ./configure, to create "configure" and "Makefile.in" which are
39
+ not included in the GIT repository.
40
+
41
+ Note that "configure" is only included in the "*.tar" distributions and not
42
+ in the "*.zip" or "*.7z" distributions. If you downloaded one of those
43
+ distributions, see "Building with project files" or "Building with makefiles",
44
+ below.
45
+
46
+ II. Rebuilding the configure scripts
47
+
48
+ If configure does not work on your system, or if you have a need to
49
+ change configure.ac or Makefile.am, and you have a reasonably
50
+ up-to-date set of tools, running ./autogen.sh in a git clone before
51
+ running ./configure may fix the problem. To be really sure that you
52
+ aren't using any of the included pre-built scripts, especially if you
53
+ are building from a tar distribution instead of a git distribution,
54
+ do this:
55
+
56
+ ./configure --enable-maintainer-mode
57
+ make maintainer-clean
58
+ ./autogen.sh --maintainer --clean
59
+ ./autogen.sh --maintainer
60
+ ./configure [--prefix=/path] [other options]
61
+ make
62
+ make install
63
+ make check
64
+
65
+ III. Using scripts/makefile*
66
+
67
+ Instead, you can use one of the custom-built makefiles in the
68
+ "scripts" directory
69
+
70
+ cp scripts/pnglibconf.h.prebuilt pnglibconf.h
71
+ cp scripts/makefile.system makefile
72
+ make test
73
+ make install
74
+
75
+ The files that are presently available in the scripts directory
76
+ are listed and described in scripts/README.txt.
77
+
78
+ Or you can use one of the "projects" in the "projects" directory.
79
+
80
+ Before installing libpng, you must first install zlib, if it
81
+ is not already on your system. zlib can usually be found
82
+ wherever you got libpng; otherwise go to https://zlib.net/. You can
83
+ place zlib in the same directory as libpng or in another directory.
84
+
85
+ If your system already has a preinstalled zlib you will still need
86
+ to have access to the zlib.h and zconf.h include files that
87
+ correspond to the version of zlib that's installed.
88
+
89
+ If you wish to test with a particular zlib that is not first in the
90
+ standard library search path, put ZLIBLIB, ZLIBINC, CPPFLAGS, LDFLAGS,
91
+ and LD_LIBRARY_PATH in your environment before running "make test"
92
+ or "make distcheck":
93
+
94
+ ZLIBLIB=/path/to/lib export ZLIBLIB
95
+ ZLIBINC=/path/to/include export ZLIBINC
96
+ CPPFLAGS="-I$ZLIBINC" export CPPFLAGS
97
+ LDFLAGS="-L$ZLIBLIB" export LDFLAGS
98
+ LD_LIBRARY_PATH="$ZLIBLIB:$LD_LIBRARY_PATH" export LD_LIBRARY_PATH
99
+
100
+ If you are using one of the makefile scripts, put ZLIBLIB and ZLIBINC
101
+ in your environment and type
102
+
103
+ make ZLIBLIB=$ZLIBLIB ZLIBINC=$ZLIBINC test
104
+
105
+ IV. Using cmake
106
+
107
+ If you want to use "cmake" (see www.cmake.org), type
108
+
109
+ cmake . -DCMAKE_INSTALL_PREFIX=/path
110
+ make
111
+ make install
112
+
113
+ As when using the simple configure method described above, "/path" points to
114
+ the installation directory where you want to put the libpng "lib", "include",
115
+ and "bin" subdirectories.
116
+
117
+ V. Directory structure
118
+
119
+ You can rename the directories that you downloaded (they
120
+ might be called "libpng-x.y.z" or "libpngNN" and "zlib-1.2.8"
121
+ or "zlib128") so that you have directories called "zlib" and "libpng".
122
+
123
+ Your directory structure should look like this:
124
+
125
+ .. (the parent directory)
126
+ libpng (this directory)
127
+ INSTALL (this file)
128
+ README
129
+ *.h, *.c => libpng source files
130
+ CMakeLists.txt => "cmake" script
131
+ configuration files:
132
+ configure.ac, configure, Makefile.am, Makefile.in,
133
+ autogen.sh, config.guess, ltmain.sh, missing, libpng.pc.in,
134
+ libpng-config.in, aclocal.m4, config.h.in, config.sub,
135
+ depcomp, install-sh, mkinstalldirs, test-pngtest.sh
136
+ contrib
137
+ arm-neon, conftest, examples, gregbook, libtests, pngminim,
138
+ pngminus, pngsuite, tools, visupng
139
+ projects
140
+ cbuilder5, owatcom, visualc71, vstudio, xcode
141
+ scripts
142
+ makefile.*
143
+ *.def (module definition files)
144
+ etc.
145
+ pngtest.png
146
+ etc.
147
+ zlib
148
+ README, *.h, *.c contrib, etc.
149
+
150
+ If the line endings in the files look funny, you may wish to get the other
151
+ distribution of libpng. It is available in both tar.gz (UNIX style line
152
+ endings) and zip (DOS style line endings) formats.
153
+
154
+ VI. Building with project files
155
+
156
+ If you are building libpng with MSVC, you can enter the
157
+ libpng projects\visualc71 or vstudio directory and follow the instructions
158
+ in README.txt.
159
+
160
+ Otherwise enter the zlib directory and follow the instructions in zlib/README,
161
+ then come back here and run "configure" or choose the appropriate
162
+ makefile.sys in the scripts directory.
163
+
164
+ VII. Building with makefiles
165
+
166
+ Copy the file (or files) that you need from the
167
+ scripts directory into this directory, for example
168
+
169
+ MSDOS example:
170
+
171
+ copy scripts\makefile.msc makefile
172
+ copy scripts\pnglibconf.h.prebuilt pnglibconf.h
173
+
174
+ UNIX example:
175
+
176
+ cp scripts/makefile.std makefile
177
+ cp scripts/pnglibconf.h.prebuilt pnglibconf.h
178
+
179
+ Read the makefile to see if you need to change any source or
180
+ target directories to match your preferences.
181
+
182
+ Then read pnglibconf.dfa to see if you want to make any configuration
183
+ changes.
184
+
185
+ Then just run "make" which will create the libpng library in
186
+ this directory and "make test" which will run a quick test that reads
187
+ the "pngtest.png" file and writes a "pngout.png" file that should be
188
+ identical to it. Look for "9782 zero samples" in the output of the
189
+ test. For more confidence, you can run another test by typing
190
+ "pngtest pngnow.png" and looking for "289 zero samples" in the output.
191
+ Also, you can run "pngtest -m contrib/pngsuite/*.png" and compare
192
+ your output with the result shown in contrib/pngsuite/README.
193
+
194
+ Most of the makefiles will allow you to run "make install" to
195
+ put the library in its final resting place (if you want to
196
+ do that, run "make install" in the zlib directory first if necessary).
197
+ Some also allow you to run "make test-installed" after you have
198
+ run "make install".
199
+
200
+ VIII. Configuring libpng for 16-bit platforms
201
+
202
+ You will want to look into zconf.h to tell zlib (and thus libpng) that
203
+ it cannot allocate more than 64K at a time. Even if you can, the memory
204
+ won't be accessible. So limit zlib and libpng to 64K by defining MAXSEG_64K.
205
+
206
+ IX. Configuring for DOS
207
+
208
+ For DOS users who only have access to the lower 640K, you will
209
+ have to limit zlib's memory usage via a png_set_compression_mem_level()
210
+ call. See zlib.h or zconf.h in the zlib library for more information.
211
+
212
+ X. Configuring for Medium Model
213
+
214
+ Libpng's support for medium model has been tested on most of the popular
215
+ compilers. Make sure MAXSEG_64K gets defined, USE_FAR_KEYWORD gets
216
+ defined, and FAR gets defined to far in pngconf.h, and you should be
217
+ all set. Everything in the library (except for zlib's structure) is
218
+ expecting far data. You must use the typedefs with the p or pp on
219
+ the end for pointers (or at least look at them and be careful). Make
220
+ note that the rows of data are defined as png_bytepp, which is
221
+ an "unsigned char far * far *".
222
+
223
+ XI. Prepending a prefix to exported symbols
224
+
225
+ Starting with libpng-1.6.0, you can configure libpng (when using the
226
+ "configure" script) to prefix all exported symbols by means of the
227
+ configuration option "--with-libpng-prefix=FOO_", where FOO_ can be any
228
+ string beginning with a letter and containing only uppercase
229
+ and lowercase letters, digits, and the underscore (i.e., a C language
230
+ identifier). This creates a set of macros in pnglibconf.h, so this is
231
+ transparent to applications; their function calls get transformed by
232
+ the macros to use the modified names.
233
+
234
+ XII. Configuring for compiler xxx:
235
+
236
+ All includes for libpng are in pngconf.h. If you need to add, change
237
+ or delete an include, this is the place to do it.
238
+ The includes that are not needed outside libpng are placed in pngpriv.h,
239
+ which is only used by the routines inside libpng itself.
240
+ The files in libpng proper only include pngpriv.h and png.h, which
241
+ in turn includes pngconf.h and, as of libpng-1.5.0, pnglibconf.h.
242
+ As of libpng-1.5.0, pngpriv.h also includes three other private header
243
+ files, pngstruct.h, pnginfo.h, and pngdebug.h, which contain material
244
+ that previously appeared in the public headers.
245
+
246
+ XIII. Removing unwanted object code
247
+
248
+ There are a bunch of #define's in pngconf.h that control what parts of
249
+ libpng are compiled. All the defines end in _SUPPORTED. If you are
250
+ never going to use a capability, you can change the #define to #undef
251
+ before recompiling libpng and save yourself code and data space, or
252
+ you can turn off individual capabilities with defines that begin with
253
+ "PNG_NO_".
254
+
255
+ In libpng-1.5.0 and later, the #define's are in pnglibconf.h instead.
256
+
257
+ You can also turn all of the transforms and ancillary chunk capabilities
258
+ off en masse with compiler directives that define
259
+ PNG_NO_READ[or WRITE]_TRANSFORMS, or PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS,
260
+ or all four, along with directives to turn on any of the capabilities that
261
+ you do want. The PNG_NO_READ[or WRITE]_TRANSFORMS directives disable the
262
+ extra transformations but still leave the library fully capable of reading
263
+ and writing PNG files with all known public chunks. Use of the
264
+ PNG_NO_READ[or WRITE]_ANCILLARY_CHUNKS directive produces a library
265
+ that is incapable of reading or writing ancillary chunks. If you are
266
+ not using the progressive reading capability, you can turn that off
267
+ with PNG_NO_PROGRESSIVE_READ (don't confuse this with the INTERLACING
268
+ capability, which you'll still have).
269
+
270
+ All the reading and writing specific code are in separate files, so the
271
+ linker should only grab the files it needs. However, if you want to
272
+ make sure, or if you are building a stand alone library, all the
273
+ reading files start with "pngr" and all the writing files start with "pngw".
274
+ The files that don't match either (like png.c, pngtrans.c, etc.)
275
+ are used for both reading and writing, and always need to be included.
276
+ The progressive reader is in pngpread.c
277
+
278
+ If you are creating or distributing a dynamically linked library (a .so
279
+ or DLL file), you should not remove or disable any parts of the library,
280
+ as this will cause applications linked with different versions of the
281
+ library to fail if they call functions not available in your library.
282
+ The size of the library itself should not be an issue, because only
283
+ those sections that are actually used will be loaded into memory.
284
+
285
+ XIV. Enabling or disabling hardware optimizations
286
+
287
+ Certain hardware capabilites, such as the Intel SSE instructions,
288
+ are normally detected at run time. Enable them with configure options
289
+ such as one of
290
+
291
+ --enable-arm-neon=yes
292
+ --enable-mips-msa=yes
293
+ --enable-intel-sse=yes
294
+ --enable-powerpc-vsx=yes
295
+
296
+ or enable them all at once with
297
+
298
+ --enable-hardware-optimizations=yes
299
+
300
+ or, if you are not using "configure", you can use one
301
+ or more of
302
+
303
+ CPPFLAGS += "-DPNG_ARM_NEON"
304
+ CPPFLAGS += "-DPNG_MIPS_MSA"
305
+ CPPFLAGS += "-DPNG_INTEL_SSE"
306
+ CPPFLAGS += "-DPNG_POWERPC_VSX"
307
+
308
+ See for example scripts/makefile.linux-opt
309
+
310
+ If you wish to avoid using them,
311
+ you can disable them via the configure option
312
+
313
+ --disable-hardware-optimizations
314
+
315
+ to disable them all, or
316
+
317
+ --enable-intel-sse=no
318
+
319
+ to disable a particular one,
320
+ or via compiler-command options such as
321
+
322
+ CPPFLAGS += "-DPNG_ARM_NEON_OPT=0, -DPNG_MIPS_MSA_OPT=0,
323
+ -DPNG_INTEL_SSE_OPT=0, -DPNG_POWERPC_VSX_OPT=0"
324
+
325
+ If you are using cmake, hardware optimizations are "on"
326
+ by default. To disable them, use
327
+
328
+ cmake . -DPNG_ARM_NEON=no -DPNG_INTEL_SSE=no \
329
+ -DPNG_MIPS_MSA=no -DPNG_POWERPC_VSX=no
330
+
331
+ or disable them all at once with
332
+
333
+ cmake . -DPNG_HARDWARE_OPTIMIZATIONS=no
334
+
335
+ XV. Changes to the build and configuration of libpng in libpng-1.5.x
336
+
337
+ Details of internal changes to the library code can be found in the CHANGES
338
+ file and in the GIT repository logs. These will be of no concern to the vast
339
+ majority of library users or builders; however, the few who configure libpng
340
+ to a non-default feature set may need to change how this is done.
341
+
342
+ There should be no need for library builders to alter build scripts if
343
+ these use the distributed build support - configure or the makefiles -
344
+ however, users of the makefiles may care to update their build scripts
345
+ to build pnglibconf.h where the corresponding makefile does not do so.
346
+
347
+ Building libpng with a non-default configuration has changed completely.
348
+ The old method using pngusr.h should still work correctly even though the
349
+ way pngusr.h is used in the build has been changed; however, library
350
+ builders will probably want to examine the changes to take advantage of
351
+ new capabilities and to simplify their build system.
352
+
353
+ A. Specific changes to library configuration capabilities
354
+
355
+ The exact mechanism used to control attributes of API functions has
356
+ changed. A single set of operating system independent macro definitions
357
+ is used and operating system specific directives are defined in
358
+ pnglibconf.h
359
+
360
+ As part of this the mechanism used to choose procedure call standards on
361
+ those systems that allow a choice has been changed. At present this only
362
+ affects certain Microsoft (DOS, Windows) and IBM (OS/2) operating systems
363
+ running on Intel processors. As before, PNGAPI is defined where required
364
+ to control the exported API functions; however, two new macros, PNGCBAPI
365
+ and PNGCAPI, are used instead for callback functions (PNGCBAPI) and
366
+ (PNGCAPI) for functions that must match a C library prototype (currently
367
+ only png_longjmp_ptr, which must match the C longjmp function.) The new
368
+ approach is documented in pngconf.h
369
+
370
+ Despite these changes, libpng 1.5.0 only supports the native C function
371
+ calling standard on those platforms tested so far ("__cdecl" on Microsoft
372
+ Windows). This is because the support requirements for alternative
373
+ calling conventions seem to no longer exist. Developers who find it
374
+ necessary to set PNG_API_RULE to 1 should advise the mailing list
375
+ (png-mng-implement) of this and library builders who use Openwatcom and
376
+ therefore set PNG_API_RULE to 2 should also contact the mailing list.
377
+
378
+ B. Changes to the configuration mechanism
379
+
380
+ Prior to libpng-1.5.0 library builders who needed to configure libpng
381
+ had either to modify the exported pngconf.h header file to add system
382
+ specific configuration or had to write feature selection macros into
383
+ pngusr.h and cause this to be included into pngconf.h by defining
384
+ PNG_USER_CONFIG. The latter mechanism had the disadvantage that an
385
+ application built without PNG_USER_CONFIG defined would see the
386
+ unmodified, default, libpng API and thus would probably fail to link.
387
+
388
+ These mechanisms still work in the configure build and in any makefile
389
+ build that builds pnglibconf.h, although the feature selection macros
390
+ have changed somewhat as described above. In 1.5.0, however, pngusr.h is
391
+ processed only once, at the time the exported header file pnglibconf.h is
392
+ built. pngconf.h no longer includes pngusr.h; therefore, pngusr.h is ignored
393
+ after the build of pnglibconf.h and it is never included in an application
394
+ build.
395
+
396
+ The formerly used alternative of adding a list of feature macros to the
397
+ CPPFLAGS setting in the build also still works; however, the macros will be
398
+ copied to pnglibconf.h and this may produce macro redefinition warnings
399
+ when the individual C files are compiled.
400
+
401
+ All configuration now only works if pnglibconf.h is built from
402
+ scripts/pnglibconf.dfa. This requires the program awk. Brian Kernighan
403
+ (the original author of awk) maintains C source code of that awk and this
404
+ and all known later implementations (often called by subtly different
405
+ names - nawk and gawk for example) are adequate to build pnglibconf.h.
406
+ The Sun Microsystems (now Oracle) program 'awk' is an earlier version
407
+ and does not work; this may also apply to other systems that have a
408
+ functioning awk called 'nawk'.
409
+
410
+ Configuration options are now documented in scripts/pnglibconf.dfa. This
411
+ file also includes dependency information that ensures a configuration is
412
+ consistent; that is, if a feature is switched off, dependent features are
413
+ also switched off. As a recommended alternative to using feature macros in
414
+ pngusr.h a system builder may also define equivalent options in pngusr.dfa
415
+ (or, indeed, any file) and add that to the configuration by setting
416
+ DFA_XTRA to the file name. The makefiles in contrib/pngminim illustrate
417
+ how to do this, and also illustrate a case where pngusr.h is still required.
418
+
419
+ After you have built libpng, the definitions that were recorded in
420
+ pnglibconf.h are available to your application (pnglibconf.h is included
421
+ in png.h and gets installed alongside png.h and pngconf.h in your
422
+ $PREFIX/include directory). Do not edit pnglibconf.h after you have built
423
+ libpng, because than the settings would not accurately reflect the settings
424
+ that were used to build libpng.
425
+
426
+ XVI. Setjmp/longjmp issues
427
+
428
+ Libpng uses setjmp()/longjmp() for error handling. Unfortunately setjmp()
429
+ is known to be not thread-safe on some platforms and we don't know of
430
+ any platform where it is guaranteed to be thread-safe. Therefore, if
431
+ your application is going to be using multiple threads, you should
432
+ configure libpng with PNG_NO_SETJMP in your pngusr.dfa file, with
433
+ -DPNG_NO_SETJMP on your compile line, or with
434
+
435
+ #undef PNG_SETJMP_SUPPORTED
436
+
437
+ in your pnglibconf.h or pngusr.h.
438
+
439
+ Starting with libpng-1.6.0, the library included a "simplified API".
440
+ This requires setjmp/longjmp, so you must either build the library
441
+ with PNG_SETJMP_SUPPORTED defined, or with PNG_SIMPLIFIED_READ_SUPPORTED
442
+ and PNG_SIMPLIFIED_WRITE_SUPPORTED undefined.
443
+
444
+ XVII. Common linking failures
445
+
446
+ If your application fails to find libpng or zlib entries while linking:
447
+
448
+ Be sure "-lz" appears after "-lpng" on your linking command.
449
+
450
+ Be sure you have built libpng, zlib, and your application for the
451
+ same platform (e.g., 32-bit or 64-bit).
452
+
453
+ If you are using the vstudio project, observe the WARNING in
454
+ project/vstudio/README.txt.
455
+
456
+ XVIII. Other sources of information about libpng:
457
+
458
+ Further information can be found in the README and libpng-manual.txt
459
+ files, in the individual makefiles, in png.h, and the manual pages
460
+ libpng.3 and png.5.
461
+
462
+ Copyright (c) 1998-2002,2006-2016 Glenn Randers-Pehrson
463
+ This document is released under the libpng license.
464
+ For conditions of distribution and use, see the disclaimer
465
+ and license in png.h.
@@ -0,0 +1,133 @@
1
+
2
+ This copy of the libpng notices is provided for your convenience. In case of
3
+ any discrepancy between this copy and the notices in the file png.h that is
4
+ included in the libpng distribution, the latter shall prevail.
5
+
6
+ COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
7
+
8
+ If you modify libpng you may insert additional notices immediately following
9
+ this sentence.
10
+
11
+ This code is released under the libpng license.
12
+
13
+ libpng versions 1.0.7, July 1, 2000 through 1.6.34, September 29, 2017 are
14
+ Copyright (c) 2000-2002, 2004, 2006-2017 Glenn Randers-Pehrson, are
15
+ derived from libpng-1.0.6, and are distributed according to the same
16
+ disclaimer and license as libpng-1.0.6 with the following individuals
17
+ added to the list of Contributing Authors:
18
+
19
+ Simon-Pierre Cadieux
20
+ Eric S. Raymond
21
+ Mans Rullgard
22
+ Cosmin Truta
23
+ Gilles Vollant
24
+ James Yu
25
+ Mandar Sahastrabuddhe
26
+ Google Inc.
27
+ Vadim Barkov
28
+
29
+ and with the following additions to the disclaimer:
30
+
31
+ There is no warranty against interference with your enjoyment of the
32
+ library or against infringement. There is no warranty that our
33
+ efforts or the library will fulfill any of your particular purposes
34
+ or needs. This library is provided with all faults, and the entire
35
+ risk of satisfactory quality, performance, accuracy, and effort is with
36
+ the user.
37
+
38
+ Some files in the "contrib" directory and some configure-generated
39
+ files that are distributed with libpng have other copyright owners and
40
+ are released under other open source licenses.
41
+
42
+ libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
43
+ Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from
44
+ libpng-0.96, and are distributed according to the same disclaimer and
45
+ license as libpng-0.96, with the following individuals added to the list
46
+ of Contributing Authors:
47
+
48
+ Tom Lane
49
+ Glenn Randers-Pehrson
50
+ Willem van Schaik
51
+
52
+ libpng versions 0.89, June 1996, through 0.96, May 1997, are
53
+ Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88,
54
+ and are distributed according to the same disclaimer and license as
55
+ libpng-0.88, with the following individuals added to the list of
56
+ Contributing Authors:
57
+
58
+ John Bowler
59
+ Kevin Bracey
60
+ Sam Bushell
61
+ Magnus Holmgren
62
+ Greg Roelofs
63
+ Tom Tanner
64
+
65
+ Some files in the "scripts" directory have other copyright owners
66
+ but are released under this license.
67
+
68
+ libpng versions 0.5, May 1995, through 0.88, January 1996, are
69
+ Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
70
+
71
+ For the purposes of this copyright and license, "Contributing Authors"
72
+ is defined as the following set of individuals:
73
+
74
+ Andreas Dilger
75
+ Dave Martindale
76
+ Guy Eric Schalnat
77
+ Paul Schmidt
78
+ Tim Wegner
79
+
80
+ The PNG Reference Library is supplied "AS IS". The Contributing Authors
81
+ and Group 42, Inc. disclaim all warranties, expressed or implied,
82
+ including, without limitation, the warranties of merchantability and of
83
+ fitness for any purpose. The Contributing Authors and Group 42, Inc.
84
+ assume no liability for direct, indirect, incidental, special, exemplary,
85
+ or consequential damages, which may result from the use of the PNG
86
+ Reference Library, even if advised of the possibility of such damage.
87
+
88
+ Permission is hereby granted to use, copy, modify, and distribute this
89
+ source code, or portions hereof, for any purpose, without fee, subject
90
+ to the following restrictions:
91
+
92
+ 1. The origin of this source code must not be misrepresented.
93
+
94
+ 2. Altered versions must be plainly marked as such and must not
95
+ be misrepresented as being the original source.
96
+
97
+ 3. This Copyright notice may not be removed or altered from any
98
+ source or altered source distribution.
99
+
100
+ The Contributing Authors and Group 42, Inc. specifically permit, without
101
+ fee, and encourage the use of this source code as a component to
102
+ supporting the PNG file format in commercial products. If you use this
103
+ source code in a product, acknowledgment is not required but would be
104
+ appreciated.
105
+
106
+ END OF COPYRIGHT NOTICE, DISCLAIMER, and LICENSE.
107
+
108
+ TRADEMARK:
109
+
110
+ The name "libpng" has not been registered by the Copyright owner
111
+ as a trademark in any jurisdiction. However, because libpng has
112
+ been distributed and maintained world-wide, continually since 1995,
113
+ the Copyright owner claims "common-law trademark protection" in any
114
+ jurisdiction where common-law trademark is recognized.
115
+
116
+ OSI CERTIFICATION:
117
+
118
+ Libpng is OSI Certified Open Source Software. OSI Certified Open Source is
119
+ a certification mark of the Open Source Initiative. OSI has not addressed
120
+ the additional disclaimers inserted at version 1.0.7.
121
+
122
+ EXPORT CONTROL:
123
+
124
+ The Copyright owner believes that the Export Control Classification
125
+ Number (ECCN) for libpng is EAR99, which means not subject to export
126
+ controls or International Traffic in Arms Regulations (ITAR) because
127
+ it is open source, publicly available software, that does not contain
128
+ any encryption software. See the EAR, paragraphs 734.3(b)(3) and
129
+ 734.7(b).
130
+
131
+ Glenn Randers-Pehrson
132
+ glennrp at users.sourceforge.net
133
+ September 29, 2017