libwz 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (362) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +165 -0
  3. package/binding.gyp +149 -0
  4. package/deps/tiny-aes/.github/workflows/c-cpp.yml +27 -0
  5. package/deps/tiny-aes/CMakeLists.txt +17 -0
  6. package/deps/tiny-aes/Makefile +61 -0
  7. package/deps/tiny-aes/README.md +83 -0
  8. package/deps/tiny-aes/aes.c +572 -0
  9. package/deps/tiny-aes/aes.h +91 -0
  10. package/deps/tiny-aes/aes.hpp +12 -0
  11. package/deps/tiny-aes/conanfile.py +73 -0
  12. package/deps/tiny-aes/library.json +19 -0
  13. package/deps/tiny-aes/library.properties +11 -0
  14. package/deps/tiny-aes/test.c +316 -0
  15. package/deps/tiny-aes/test.cpp +2 -0
  16. package/deps/tiny-aes/test_package/CMakeLists.txt +11 -0
  17. package/deps/tiny-aes/test_package/conanfile.py +17 -0
  18. package/deps/tiny-aes/unlicense.txt +24 -0
  19. package/deps/zlib/.cmake-format.yaml +245 -0
  20. package/deps/zlib/.github/workflows/c-std.yml +268 -0
  21. package/deps/zlib/.github/workflows/cmake.yml +147 -0
  22. package/deps/zlib/.github/workflows/configure.yml +146 -0
  23. package/deps/zlib/.github/workflows/contribs.yml +64 -0
  24. package/deps/zlib/.github/workflows/fuzz.yml +25 -0
  25. package/deps/zlib/.github/workflows/msys-cygwin.yml +92 -0
  26. package/deps/zlib/.github/workflows/others.yml +153 -0
  27. package/deps/zlib/BUILD.bazel +134 -0
  28. package/deps/zlib/CMakeLists.txt +310 -0
  29. package/deps/zlib/ChangeLog +1669 -0
  30. package/deps/zlib/FAQ +371 -0
  31. package/deps/zlib/INDEX +67 -0
  32. package/deps/zlib/LICENSE +22 -0
  33. package/deps/zlib/MODULE.bazel +9 -0
  34. package/deps/zlib/Makefile.in +426 -0
  35. package/deps/zlib/README +115 -0
  36. package/deps/zlib/README-cmake.md +79 -0
  37. package/deps/zlib/adler32.c +164 -0
  38. package/deps/zlib/amiga/Makefile.pup +69 -0
  39. package/deps/zlib/amiga/Makefile.sas +68 -0
  40. package/deps/zlib/compress.c +99 -0
  41. package/deps/zlib/configure +1078 -0
  42. package/deps/zlib/contrib/CMakeLists.txt +61 -0
  43. package/deps/zlib/contrib/README.contrib +57 -0
  44. package/deps/zlib/contrib/ada/CMakeLists.txt +217 -0
  45. package/deps/zlib/contrib/ada/buffer_demo.adb +106 -0
  46. package/deps/zlib/contrib/ada/cmake/Modules/CMakeADACompiler.cmake.in +23 -0
  47. package/deps/zlib/contrib/ada/cmake/Modules/CMakeADAInformation.cmake +133 -0
  48. package/deps/zlib/contrib/ada/cmake/Modules/CMakeDetermineADACompiler.cmake +33 -0
  49. package/deps/zlib/contrib/ada/cmake/Modules/CMakeTestADACompiler.cmake +46 -0
  50. package/deps/zlib/contrib/ada/cmake/binder_helper.cmake +47 -0
  51. package/deps/zlib/contrib/ada/cmake/compile_helper.cmake +32 -0
  52. package/deps/zlib/contrib/ada/cmake/exe_link_helper.cmake +53 -0
  53. package/deps/zlib/contrib/ada/cmake/shared_link_helper.cmake +52 -0
  54. package/deps/zlib/contrib/ada/cmake/static_link_helper.cmake +25 -0
  55. package/deps/zlib/contrib/ada/mtest.adb +156 -0
  56. package/deps/zlib/contrib/ada/read.adb +156 -0
  57. package/deps/zlib/contrib/ada/readme.txt +65 -0
  58. package/deps/zlib/contrib/ada/test.adb +463 -0
  59. package/deps/zlib/contrib/ada/zlib-streams.adb +225 -0
  60. package/deps/zlib/contrib/ada/zlib-streams.ads +114 -0
  61. package/deps/zlib/contrib/ada/zlib-thin.adb +142 -0
  62. package/deps/zlib/contrib/ada/zlib-thin.ads +450 -0
  63. package/deps/zlib/contrib/ada/zlib.adb +701 -0
  64. package/deps/zlib/contrib/ada/zlib.ads +328 -0
  65. package/deps/zlib/contrib/ada/zlib.gpr +20 -0
  66. package/deps/zlib/contrib/blast/CMakeLists.txt +166 -0
  67. package/deps/zlib/contrib/blast/Makefile +14 -0
  68. package/deps/zlib/contrib/blast/README +4 -0
  69. package/deps/zlib/contrib/blast/blast-test.c +42 -0
  70. package/deps/zlib/contrib/blast/blast.c +422 -0
  71. package/deps/zlib/contrib/blast/blast.h +84 -0
  72. package/deps/zlib/contrib/blast/blastConfig.cmake.in +18 -0
  73. package/deps/zlib/contrib/blast/test/CMakeLists.txt +193 -0
  74. package/deps/zlib/contrib/blast/test/add_subdirectory_exclude_test.cmake.in +27 -0
  75. package/deps/zlib/contrib/blast/test/add_subdirectory_test.cmake.in +25 -0
  76. package/deps/zlib/contrib/blast/test/find_package_no_components_test.cmake.in +24 -0
  77. package/deps/zlib/contrib/blast/test/find_package_test.cmake.in +24 -0
  78. package/deps/zlib/contrib/blast/test/find_package_wrong_components_test.cmake.in +24 -0
  79. package/deps/zlib/contrib/blast/test.pk +0 -0
  80. package/deps/zlib/contrib/blast/test.txt +1 -0
  81. package/deps/zlib/contrib/blast/tester.cmake +28 -0
  82. package/deps/zlib/contrib/crc32vx/CMakeLists.txt +67 -0
  83. package/deps/zlib/contrib/crc32vx/README +9 -0
  84. package/deps/zlib/contrib/crc32vx/crc32_vx.c +254 -0
  85. package/deps/zlib/contrib/crc32vx/crc32_vx_hooks.h +9 -0
  86. package/deps/zlib/contrib/delphi/ZLib.pas +557 -0
  87. package/deps/zlib/contrib/delphi/ZLibConst.pas +11 -0
  88. package/deps/zlib/contrib/delphi/readme.txt +76 -0
  89. package/deps/zlib/contrib/delphi/zlibd32.mak +99 -0
  90. package/deps/zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
  91. package/deps/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
  92. package/deps/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
  93. package/deps/zlib/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
  94. package/deps/zlib/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
  95. package/deps/zlib/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
  96. package/deps/zlib/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
  97. package/deps/zlib/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
  98. package/deps/zlib/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
  99. package/deps/zlib/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
  100. package/deps/zlib/contrib/dotzlib/DotZLib.build +33 -0
  101. package/deps/zlib/contrib/dotzlib/DotZLib.chm +0 -0
  102. package/deps/zlib/contrib/dotzlib/DotZLib.sln +21 -0
  103. package/deps/zlib/contrib/dotzlib/LICENSE_1_0.txt +23 -0
  104. package/deps/zlib/contrib/dotzlib/readme.txt +58 -0
  105. package/deps/zlib/contrib/gcc_gvmat64/CMakeLists.txt +19 -0
  106. package/deps/zlib/contrib/gcc_gvmat64/gvmat64.S +570 -0
  107. package/deps/zlib/contrib/infback9/CMakeLists.txt +19 -0
  108. package/deps/zlib/contrib/infback9/README +1 -0
  109. package/deps/zlib/contrib/infback9/infback9.c +603 -0
  110. package/deps/zlib/contrib/infback9/infback9.h +37 -0
  111. package/deps/zlib/contrib/infback9/inffix9.h +107 -0
  112. package/deps/zlib/contrib/infback9/inflate9.h +47 -0
  113. package/deps/zlib/contrib/infback9/inftree9.c +319 -0
  114. package/deps/zlib/contrib/infback9/inftree9.h +61 -0
  115. package/deps/zlib/contrib/iostream/test.cpp +24 -0
  116. package/deps/zlib/contrib/iostream/zfstream.cpp +329 -0
  117. package/deps/zlib/contrib/iostream/zfstream.h +128 -0
  118. package/deps/zlib/contrib/iostream2/zstream.h +306 -0
  119. package/deps/zlib/contrib/iostream2/zstream_test.cpp +25 -0
  120. package/deps/zlib/contrib/iostream3/CMakeLists.txt +200 -0
  121. package/deps/zlib/contrib/iostream3/README +35 -0
  122. package/deps/zlib/contrib/iostream3/TODO +17 -0
  123. package/deps/zlib/contrib/iostream3/iostream3Config.cmake.in +23 -0
  124. package/deps/zlib/contrib/iostream3/test/CMakeLists.txt +191 -0
  125. package/deps/zlib/contrib/iostream3/test/add_subdirectory_exclude_test.cmake.in +27 -0
  126. package/deps/zlib/contrib/iostream3/test/add_subdirectory_test.cmake.in +25 -0
  127. package/deps/zlib/contrib/iostream3/test/find_package_no_components_test.cmake.in +24 -0
  128. package/deps/zlib/contrib/iostream3/test/find_package_test.cmake.in +24 -0
  129. package/deps/zlib/contrib/iostream3/test/find_package_wrong_components_test.cmake.in +24 -0
  130. package/deps/zlib/contrib/iostream3/test.cc +50 -0
  131. package/deps/zlib/contrib/iostream3/zfstream.cc +479 -0
  132. package/deps/zlib/contrib/iostream3/zfstream.h +466 -0
  133. package/deps/zlib/contrib/minizip/CMakeLists.txt +387 -0
  134. package/deps/zlib/contrib/minizip/LICENSE.Info-Zip +58 -0
  135. package/deps/zlib/contrib/minizip/Makefile +33 -0
  136. package/deps/zlib/contrib/minizip/Makefile.am +45 -0
  137. package/deps/zlib/contrib/minizip/MiniZip64_Changes.txt +6 -0
  138. package/deps/zlib/contrib/minizip/MiniZip64_info.txt +69 -0
  139. package/deps/zlib/contrib/minizip/configure.ac +32 -0
  140. package/deps/zlib/contrib/minizip/crypt.h +125 -0
  141. package/deps/zlib/contrib/minizip/ints.h +57 -0
  142. package/deps/zlib/contrib/minizip/ioapi.c +231 -0
  143. package/deps/zlib/contrib/minizip/ioapi.h +183 -0
  144. package/deps/zlib/contrib/minizip/iowin32.c +447 -0
  145. package/deps/zlib/contrib/minizip/iowin32.h +27 -0
  146. package/deps/zlib/contrib/minizip/make_vms.com +25 -0
  147. package/deps/zlib/contrib/minizip/miniunz.c +647 -0
  148. package/deps/zlib/contrib/minizip/miniunzip.1 +63 -0
  149. package/deps/zlib/contrib/minizip/minizip.1 +46 -0
  150. package/deps/zlib/contrib/minizip/minizip.c +511 -0
  151. package/deps/zlib/contrib/minizip/minizip.pc.in +13 -0
  152. package/deps/zlib/contrib/minizip/minizip.pc.txt +13 -0
  153. package/deps/zlib/contrib/minizip/minizipConfig.cmake.in +27 -0
  154. package/deps/zlib/contrib/minizip/mztools.c +294 -0
  155. package/deps/zlib/contrib/minizip/mztools.h +37 -0
  156. package/deps/zlib/contrib/minizip/skipset.h +366 -0
  157. package/deps/zlib/contrib/minizip/test/CMakeLists.txt +176 -0
  158. package/deps/zlib/contrib/minizip/test/add_subdirectory_exclude_test.cmake.in +29 -0
  159. package/deps/zlib/contrib/minizip/test/add_subdirectory_test.cmake.in +28 -0
  160. package/deps/zlib/contrib/minizip/test/find_package_no_components_test.cmake.in +26 -0
  161. package/deps/zlib/contrib/minizip/test/find_package_test.cmake.in +26 -0
  162. package/deps/zlib/contrib/minizip/test/find_package_wrong_components_test.cmake.in +26 -0
  163. package/deps/zlib/contrib/minizip/test/test_helper.cm +32 -0
  164. package/deps/zlib/contrib/minizip/unzip.c +1984 -0
  165. package/deps/zlib/contrib/minizip/unzip.h +442 -0
  166. package/deps/zlib/contrib/minizip/zip.c +2246 -0
  167. package/deps/zlib/contrib/minizip/zip.h +371 -0
  168. package/deps/zlib/contrib/nuget/nuget.csproj +45 -0
  169. package/deps/zlib/contrib/nuget/nuget.sln +22 -0
  170. package/deps/zlib/contrib/pascal/example.pas +599 -0
  171. package/deps/zlib/contrib/pascal/readme.txt +76 -0
  172. package/deps/zlib/contrib/pascal/zlibd32.mak +99 -0
  173. package/deps/zlib/contrib/pascal/zlibpas.pas +276 -0
  174. package/deps/zlib/contrib/puff/CMakeLists.txt +154 -0
  175. package/deps/zlib/contrib/puff/Makefile +42 -0
  176. package/deps/zlib/contrib/puff/README +63 -0
  177. package/deps/zlib/contrib/puff/bin-writer.c +26 -0
  178. package/deps/zlib/contrib/puff/puff.c +840 -0
  179. package/deps/zlib/contrib/puff/puff.h +35 -0
  180. package/deps/zlib/contrib/puff/puffConfig.cmake.in +18 -0
  181. package/deps/zlib/contrib/puff/pufftest.c +168 -0
  182. package/deps/zlib/contrib/puff/test/CMakeLists.txt +262 -0
  183. package/deps/zlib/contrib/puff/test/add_subdirectory_exclude_test.cmake.in +26 -0
  184. package/deps/zlib/contrib/puff/test/add_subdirectory_test.cmake.in +25 -0
  185. package/deps/zlib/contrib/puff/test/find_package_no_components_test.cmake.in +24 -0
  186. package/deps/zlib/contrib/puff/test/find_package_test.cmake.in +24 -0
  187. package/deps/zlib/contrib/puff/test/find_package_wrong_components_test.cmake.in +24 -0
  188. package/deps/zlib/contrib/puff/test/tester-cov.cmake +58 -0
  189. package/deps/zlib/contrib/puff/test/tester.cmake +16 -0
  190. package/deps/zlib/contrib/puff/zeros.raw +0 -0
  191. package/deps/zlib/contrib/testzlib/CMakeLists.txt +44 -0
  192. package/deps/zlib/contrib/testzlib/testzlib.c +275 -0
  193. package/deps/zlib/contrib/testzlib/testzlib.txt +10 -0
  194. package/deps/zlib/contrib/vstudio/readme.txt +22 -0
  195. package/deps/zlib/contrib/zlib1-dll/CMakeLists.txt +196 -0
  196. package/deps/zlib/contrib/zlib1-dll/readme.txt +21 -0
  197. package/deps/zlib/crc32.c +983 -0
  198. package/deps/zlib/crc32.h +9446 -0
  199. package/deps/zlib/deflate.c +2185 -0
  200. package/deps/zlib/deflate.h +383 -0
  201. package/deps/zlib/doc/algorithm.txt +209 -0
  202. package/deps/zlib/doc/crc-doc.1.0.pdf +0 -0
  203. package/deps/zlib/doc/rfc1950.txt +619 -0
  204. package/deps/zlib/doc/rfc1951.txt +955 -0
  205. package/deps/zlib/doc/rfc1952.txt +675 -0
  206. package/deps/zlib/doc/txtvsbin.txt +107 -0
  207. package/deps/zlib/examples/README.examples +54 -0
  208. package/deps/zlib/examples/enough.c +597 -0
  209. package/deps/zlib/examples/fitblk.c +233 -0
  210. package/deps/zlib/examples/gun.c +702 -0
  211. package/deps/zlib/examples/gzappend.c +504 -0
  212. package/deps/zlib/examples/gzjoin.c +449 -0
  213. package/deps/zlib/examples/gzlog.c +1061 -0
  214. package/deps/zlib/examples/gzlog.h +91 -0
  215. package/deps/zlib/examples/gznorm.c +474 -0
  216. package/deps/zlib/examples/zlib_how.html +550 -0
  217. package/deps/zlib/examples/zpipe.c +206 -0
  218. package/deps/zlib/examples/zran.c +546 -0
  219. package/deps/zlib/examples/zran.h +53 -0
  220. package/deps/zlib/gzclose.c +23 -0
  221. package/deps/zlib/gzguts.h +216 -0
  222. package/deps/zlib/gzlib.c +609 -0
  223. package/deps/zlib/gzread.c +668 -0
  224. package/deps/zlib/gzwrite.c +700 -0
  225. package/deps/zlib/infback.c +581 -0
  226. package/deps/zlib/inffast.c +321 -0
  227. package/deps/zlib/inffast.h +11 -0
  228. package/deps/zlib/inffixed.h +94 -0
  229. package/deps/zlib/inflate.c +1413 -0
  230. package/deps/zlib/inflate.h +126 -0
  231. package/deps/zlib/inftrees.c +424 -0
  232. package/deps/zlib/inftrees.h +64 -0
  233. package/deps/zlib/make_vms.com +867 -0
  234. package/deps/zlib/msdos/Makefile.bor +115 -0
  235. package/deps/zlib/msdos/Makefile.dj2 +104 -0
  236. package/deps/zlib/msdos/Makefile.emx +69 -0
  237. package/deps/zlib/msdos/Makefile.msc +112 -0
  238. package/deps/zlib/msdos/Makefile.tc +100 -0
  239. package/deps/zlib/os400/README400 +48 -0
  240. package/deps/zlib/os400/bndsrc +144 -0
  241. package/deps/zlib/os400/make.sh +383 -0
  242. package/deps/zlib/os400/zlibfixed.rpgle +578 -0
  243. package/deps/zlib/os400/zlibfree.rpgle +634 -0
  244. package/deps/zlib/qnx/package.qpg +141 -0
  245. package/deps/zlib/test/CMakeLists.txt +318 -0
  246. package/deps/zlib/test/add_subdirectory_exclude_test.cmake.in +29 -0
  247. package/deps/zlib/test/add_subdirectory_test.cmake.in +28 -0
  248. package/deps/zlib/test/example.c +552 -0
  249. package/deps/zlib/test/find_package_no_components_test.cmake.in +27 -0
  250. package/deps/zlib/test/find_package_test.cmake.in +27 -0
  251. package/deps/zlib/test/find_package_wrong_components_test.cmake.in +27 -0
  252. package/deps/zlib/test/infcover.c +672 -0
  253. package/deps/zlib/test/minigzip.c +592 -0
  254. package/deps/zlib/treebuild.xml +116 -0
  255. package/deps/zlib/trees.c +1119 -0
  256. package/deps/zlib/trees.h +128 -0
  257. package/deps/zlib/uncompr.c +101 -0
  258. package/deps/zlib/watcom/watcom_f.mak +43 -0
  259. package/deps/zlib/watcom/watcom_l.mak +43 -0
  260. package/deps/zlib/win32/DLL_FAQ.txt +381 -0
  261. package/deps/zlib/win32/Makefile.bor +109 -0
  262. package/deps/zlib/win32/Makefile.gcc +177 -0
  263. package/deps/zlib/win32/Makefile.msc +159 -0
  264. package/deps/zlib/win32/README-WIN32.txt +103 -0
  265. package/deps/zlib/win32/VisualC.txt +3 -0
  266. package/deps/zlib/win32/zlib.def +104 -0
  267. package/deps/zlib/win32/zlib1.rc +37 -0
  268. package/deps/zlib/zconf.h.in +551 -0
  269. package/deps/zlib/zlib.3 +149 -0
  270. package/deps/zlib/zlib.3.pdf +0 -0
  271. package/deps/zlib/zlib.h +2057 -0
  272. package/deps/zlib/zlib.map +116 -0
  273. package/deps/zlib/zlib.pc.cmakein +14 -0
  274. package/deps/zlib/zlib.pc.in +14 -0
  275. package/deps/zlib/zlibConfig.cmake.in +18 -0
  276. package/deps/zlib/zutil.c +313 -0
  277. package/deps/zlib/zutil.h +331 -0
  278. package/dist/index.d.ts +266 -0
  279. package/dist/index.js +1146 -0
  280. package/dist/libwz.js +5632 -0
  281. package/dist/libwz.wasm +0 -0
  282. package/include/wz/CRC32.h +182 -0
  283. package/include/wz/PngUtility.h +72 -0
  284. package/include/wz/PortalType.h +124 -0
  285. package/include/wz/Properties/WzBinaryProperty.h +70 -0
  286. package/include/wz/Properties/WzCanvasProperty.h +55 -0
  287. package/include/wz/Properties/WzConvexProperty.h +34 -0
  288. package/include/wz/Properties/WzDoubleProperty.h +32 -0
  289. package/include/wz/Properties/WzFloatProperty.h +30 -0
  290. package/include/wz/Properties/WzIntProperty.h +30 -0
  291. package/include/wz/Properties/WzLongProperty.h +30 -0
  292. package/include/wz/Properties/WzLuaProperty.h +31 -0
  293. package/include/wz/Properties/WzNullProperty.h +15 -0
  294. package/include/wz/Properties/WzPngProperty.h +53 -0
  295. package/include/wz/Properties/WzRawDataProperty.h +46 -0
  296. package/include/wz/Properties/WzShortProperty.h +31 -0
  297. package/include/wz/Properties/WzStringProperty.h +32 -0
  298. package/include/wz/Properties/WzSubProperty.h +35 -0
  299. package/include/wz/Properties/WzUOLProperty.h +44 -0
  300. package/include/wz/Properties/WzVectorProperty.h +40 -0
  301. package/include/wz/Properties/WzVideoProperty.h +43 -0
  302. package/include/wz/Result.h +58 -0
  303. package/include/wz/Util/Defines.h +16 -0
  304. package/include/wz/Util/ListFileParser.h +20 -0
  305. package/include/wz/Util/WzBinaryReader.h +95 -0
  306. package/include/wz/Util/WzBinaryWriter.h +72 -0
  307. package/include/wz/Util/WzBlobDataSource.h +30 -0
  308. package/include/wz/Util/WzDataSource.h +49 -0
  309. package/include/wz/Util/WzKeyGenerator.h +28 -0
  310. package/include/wz/Util/WzMutableKey.h +39 -0
  311. package/include/wz/Util/WzPath.h +37 -0
  312. package/include/wz/Util/WzStream.h +86 -0
  313. package/include/wz/Util/WzTool.h +42 -0
  314. package/include/wz/WzAESConstant.h +17 -0
  315. package/include/wz/WzDirectory.h +97 -0
  316. package/include/wz/WzEnums.h +76 -0
  317. package/include/wz/WzFile.h +99 -0
  318. package/include/wz/WzHeader.h +47 -0
  319. package/include/wz/WzImage.h +97 -0
  320. package/include/wz/WzImageProperty.h +92 -0
  321. package/include/wz/WzObject.h +55 -0
  322. package/include/wz/WzPropertyCollection.h +115 -0
  323. package/include/wz/wz.h +41 -0
  324. package/include/wz/wz_api.h +432 -0
  325. package/package.json +93 -0
  326. package/src/PngUtility.cpp +328 -0
  327. package/src/Properties/WzBinaryProperty.cpp +183 -0
  328. package/src/Properties/WzCanvasProperty.cpp +262 -0
  329. package/src/Properties/WzConvexProperty.cpp +159 -0
  330. package/src/Properties/WzDoubleProperty.cpp +12 -0
  331. package/src/Properties/WzFloatProperty.cpp +17 -0
  332. package/src/Properties/WzIntProperty.cpp +12 -0
  333. package/src/Properties/WzLongProperty.cpp +12 -0
  334. package/src/Properties/WzLuaProperty.cpp +37 -0
  335. package/src/Properties/WzNullProperty.cpp +11 -0
  336. package/src/Properties/WzPngProperty.cpp +637 -0
  337. package/src/Properties/WzRawDataProperty.cpp +116 -0
  338. package/src/Properties/WzShortProperty.cpp +12 -0
  339. package/src/Properties/WzStringProperty.cpp +44 -0
  340. package/src/Properties/WzSubProperty.cpp +129 -0
  341. package/src/Properties/WzUOLProperty.cpp +136 -0
  342. package/src/Properties/WzVectorProperty.cpp +22 -0
  343. package/src/Properties/WzVideoProperty.cpp +115 -0
  344. package/src/Util/ListFileParser.cpp +48 -0
  345. package/src/Util/WzBinaryReader.cpp +368 -0
  346. package/src/Util/WzBinaryWriter.cpp +305 -0
  347. package/src/Util/WzBlobDataSource.cpp +47 -0
  348. package/src/Util/WzDataSource.cpp +61 -0
  349. package/src/Util/WzKeyGenerator.cpp +43 -0
  350. package/src/Util/WzMutableKey.cpp +59 -0
  351. package/src/Util/WzStream.cpp +196 -0
  352. package/src/Util/WzTool.cpp +266 -0
  353. package/src/WzAESConstant.cpp +12 -0
  354. package/src/WzDirectory.cpp +669 -0
  355. package/src/WzEnums.cpp +20 -0
  356. package/src/WzFile.cpp +450 -0
  357. package/src/WzImage.cpp +350 -0
  358. package/src/WzImageProperty.cpp +469 -0
  359. package/src/WzObject.cpp +174 -0
  360. package/src/WzPropertyCollection.cpp +84 -0
  361. package/src/capi/wz_api.cpp +1996 -0
  362. package/src/node/binding.cpp +1776 -0
@@ -0,0 +1,426 @@
1
+ # Makefile for zlib
2
+ # Copyright (C) 1995-2026 Jean-loup Gailly, Mark Adler
3
+ # For conditions of distribution and use, see copyright notice in zlib.h
4
+
5
+ # To compile and test, type:
6
+ # ./configure; make test
7
+ # Normally configure builds both a static and a shared library.
8
+ # If you want to build just a static library, use: ./configure --static
9
+
10
+ # To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
11
+ # make install
12
+ # To install in $HOME instead of /usr/local, use:
13
+ # make install prefix=$HOME
14
+
15
+ CC=cc
16
+ GCOV=GCOV
17
+ LLVM_GCOV_FLAG=LLMV_GCOV_FLAG
18
+
19
+ CFLAGS=-O
20
+ #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
21
+ #CFLAGS=-g -DZLIB_DEBUG
22
+ #CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
23
+ # -Wstrict-prototypes -Wmissing-prototypes
24
+
25
+ SFLAGS=-O
26
+ LDFLAGS=
27
+ TEST_LIBS=-L. libz.a
28
+ LDSHARED=$(CC)
29
+ CPP=$(CC) -E
30
+ VGFMAFLAG=
31
+
32
+ STATICLIB=libz.a
33
+ SHAREDLIB=libz.so
34
+ SHAREDLIBV=libz.so.1.3.2
35
+ SHAREDLIBM=libz.so.1
36
+ LIBS=$(STATICLIB) $(SHAREDLIBV)
37
+
38
+ AR=ar
39
+ ARFLAGS=rc
40
+ RANLIB=ranlib
41
+ LDCONFIG=ldconfig
42
+ LDSHAREDLIBC=-lc
43
+ TAR=tar
44
+ SHELL=/bin/sh
45
+ EXE=
46
+
47
+ prefix = /usr/local
48
+ exec_prefix = ${prefix}
49
+ libdir = ${exec_prefix}/lib
50
+ sharedlibdir = ${libdir}
51
+ includedir = ${prefix}/include
52
+ mandir = ${prefix}/share/man
53
+ man3dir = ${mandir}/man3
54
+ pkgconfigdir = ${libdir}/pkgconfig
55
+ SRCDIR=
56
+ ZINC=
57
+ ZINCOUT=-I.
58
+
59
+ OBJZ = adler32.o crc32.o deflate.o infback.o inffast.o inflate.o inftrees.o trees.o zutil.o
60
+ OBJG = compress.o uncompr.o gzclose.o gzlib.o gzread.o gzwrite.o
61
+ OBJC = $(OBJZ) $(OBJG)
62
+
63
+ PIC_OBJZ = adler32.lo crc32.lo deflate.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo zutil.lo
64
+ PIC_OBJG = compress.lo uncompr.lo gzclose.lo gzlib.lo gzread.lo gzwrite.lo
65
+ PIC_OBJC = $(PIC_OBJZ) $(PIC_OBJG)
66
+
67
+ # to use the asm code: make OBJA=match.o, PIC_OBJA=match.lo
68
+ OBJA =
69
+ PIC_OBJA =
70
+
71
+ OBJS = $(OBJC) $(OBJA)
72
+
73
+ PIC_OBJS = $(PIC_OBJC) $(PIC_OBJA)
74
+
75
+ all: static shared
76
+
77
+ static: example$(EXE) minigzip$(EXE)
78
+
79
+ shared: examplesh$(EXE) minigzipsh$(EXE)
80
+
81
+ all64: example64$(EXE) minigzip64$(EXE)
82
+
83
+ check: test
84
+
85
+ test: all teststatic testshared
86
+
87
+ teststatic: static
88
+ @TMPST=tmpst_$$; \
89
+ if echo hello world | ${QEMU_RUN} ./minigzip | ${QEMU_RUN} ./minigzip -d && ${QEMU_RUN} ./example $$TMPST ; then \
90
+ echo ' *** zlib test OK ***'; \
91
+ else \
92
+ echo ' *** zlib test FAILED ***'; false; \
93
+ fi
94
+ @rm -f tmpst_$$
95
+
96
+ testshared: shared
97
+ @LD_LIBRARY_PATH=`pwd`:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
98
+ LD_LIBRARYN32_PATH=`pwd`:$(LD_LIBRARYN32_PATH) ; export LD_LIBRARYN32_PATH; \
99
+ DYLD_LIBRARY_PATH=`pwd`:$(DYLD_LIBRARY_PATH) ; export DYLD_LIBRARY_PATH; \
100
+ SHLIB_PATH=`pwd`:$(SHLIB_PATH) ; export SHLIB_PATH; \
101
+ TMPSH=tmpsh_$$; \
102
+ if echo hello world | ${QEMU_RUN} ./minigzipsh | ${QEMU_RUN} ./minigzipsh -d && ${QEMU_RUN} ./examplesh $$TMPSH; then \
103
+ echo ' *** zlib shared test OK ***'; \
104
+ else \
105
+ echo ' *** zlib shared test FAILED ***'; false; \
106
+ fi
107
+ @rm -f tmpsh_$$
108
+
109
+ test64: all64
110
+ @TMP64=tmp64_$$; \
111
+ if echo hello world | ${QEMU_RUN} ./minigzip64 | ${QEMU_RUN} ./minigzip64 -d && ${QEMU_RUN} ./example64 $$TMP64; then \
112
+ echo ' *** zlib 64-bit test OK ***'; \
113
+ else \
114
+ echo ' *** zlib 64-bit test FAILED ***'; false; \
115
+ fi
116
+ @rm -f tmp64_$$
117
+
118
+ infcover.o: $(SRCDIR)test/infcover.c $(SRCDIR)zlib.h zconf.h $(SRCDIR)inflate.h $(SRCDIR)inftrees.h
119
+ $(CC) $(CFLAGS) $(ZINCOUT) -c -coverage -o $@ $(SRCDIR)test/infcover.c
120
+
121
+ infcover: infcover.o libz.a
122
+ $(CC) $(CFLAGS) -coverage -o $@ infcover.o libz.a
123
+
124
+ cover: infcover
125
+ rm -f *.gcda
126
+ ${QEMU_RUN} ./infcover
127
+ ${GCOV} ${LLVM_GCOV_FLAG} inf*.c -o ./infcover.gcda
128
+
129
+ libz.a: $(OBJS)
130
+ $(AR) $(ARFLAGS) $@ $(OBJS)
131
+ -@ ($(RANLIB) $@ || true) >/dev/null 2>&1
132
+
133
+ match.o: match.S
134
+ $(CPP) match.S > _match.s
135
+ $(CC) -c _match.s
136
+ mv _match.o match.o
137
+ rm -f _match.s
138
+
139
+ match.lo: match.S
140
+ $(CPP) match.S > _match.s
141
+ $(CC) -c -fPIC _match.s
142
+ mv _match.o match.lo
143
+ rm -f _match.s
144
+
145
+ example.o: $(SRCDIR)test/example.c $(SRCDIR)zlib.h zconf.h
146
+ $(CC) $(CFLAGS) $(ZINCOUT) -c -o $@ $(SRCDIR)test/example.c
147
+
148
+ minigzip.o: $(SRCDIR)test/minigzip.c $(SRCDIR)zlib.h zconf.h
149
+ $(CC) $(CFLAGS) $(ZINCOUT) -c -o $@ $(SRCDIR)test/minigzip.c
150
+
151
+ example64.o: $(SRCDIR)test/example.c $(SRCDIR)zlib.h zconf.h
152
+ $(CC) $(CFLAGS) $(ZINCOUT) -D_FILE_OFFSET_BITS=64 -c -o $@ $(SRCDIR)test/example.c
153
+
154
+ minigzip64.o: $(SRCDIR)test/minigzip.c $(SRCDIR)zlib.h zconf.h
155
+ $(CC) $(CFLAGS) $(ZINCOUT) -D_FILE_OFFSET_BITS=64 -c -o $@ $(SRCDIR)test/minigzip.c
156
+
157
+
158
+ adler32.o: $(SRCDIR)adler32.c
159
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)adler32.c
160
+
161
+ crc32.o: $(SRCDIR)crc32.c
162
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)crc32.c
163
+
164
+ crc32_vx.o: $(SRCDIR)contrib/crc32vx/crc32_vx.c
165
+ $(CC) $(CFLAGS) $(VGFMAFLAG) $(ZINC) -c -o $@ $(SRCDIR)contrib/crc32vx/crc32_vx.c
166
+
167
+ deflate.o: $(SRCDIR)deflate.c
168
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)deflate.c
169
+
170
+ infback.o: $(SRCDIR)infback.c
171
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)infback.c
172
+
173
+ inffast.o: $(SRCDIR)inffast.c
174
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)inffast.c
175
+
176
+ inflate.o: $(SRCDIR)inflate.c
177
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)inflate.c
178
+
179
+ inftrees.o: $(SRCDIR)inftrees.c
180
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)inftrees.c
181
+
182
+ trees.o: $(SRCDIR)trees.c
183
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)trees.c
184
+
185
+ zutil.o: $(SRCDIR)zutil.c $(SRCDIR)gzguts.h
186
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)zutil.c
187
+
188
+ compress.o: $(SRCDIR)compress.c
189
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)compress.c
190
+
191
+ uncompr.o: $(SRCDIR)uncompr.c
192
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)uncompr.c
193
+
194
+ gzclose.o: $(SRCDIR)gzclose.c
195
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)gzclose.c
196
+
197
+ gzlib.o: $(SRCDIR)gzlib.c
198
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)gzlib.c
199
+
200
+ gzread.o: $(SRCDIR)gzread.c
201
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)gzread.c
202
+
203
+ gzwrite.o: $(SRCDIR)gzwrite.c
204
+ $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)gzwrite.c
205
+
206
+
207
+ adler32.lo: $(SRCDIR)adler32.c
208
+ -@mkdir objs 2>/dev/null || test -d objs
209
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/adler32.o $(SRCDIR)adler32.c
210
+ -@mv objs/adler32.o $@
211
+
212
+ crc32.lo: $(SRCDIR)crc32.c
213
+ -@mkdir objs 2>/dev/null || test -d objs
214
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/crc32.o $(SRCDIR)crc32.c
215
+ -@mv objs/crc32.o $@
216
+
217
+ crc32_vx.lo: $(SRCDIR)contrib/crc32vx/crc32_vx.c
218
+ -@mkdir objs 2>/dev/null || test -d objs
219
+ $(CC) $(SFLAGS) $(VGFMAFLAG) $(ZINC) -DPIC -c -o objs/crc32_vx.o $(SRCDIR)contrib/crc32vx/crc32_vx.c
220
+ -@mv objs/crc32_vx.o $@
221
+
222
+ deflate.lo: $(SRCDIR)deflate.c
223
+ -@mkdir objs 2>/dev/null || test -d objs
224
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/deflate.o $(SRCDIR)deflate.c
225
+ -@mv objs/deflate.o $@
226
+
227
+ infback.lo: $(SRCDIR)infback.c
228
+ -@mkdir objs 2>/dev/null || test -d objs
229
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/infback.o $(SRCDIR)infback.c
230
+ -@mv objs/infback.o $@
231
+
232
+ inffast.lo: $(SRCDIR)inffast.c
233
+ -@mkdir objs 2>/dev/null || test -d objs
234
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/inffast.o $(SRCDIR)inffast.c
235
+ -@mv objs/inffast.o $@
236
+
237
+ inflate.lo: $(SRCDIR)inflate.c
238
+ -@mkdir objs 2>/dev/null || test -d objs
239
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/inflate.o $(SRCDIR)inflate.c
240
+ -@mv objs/inflate.o $@
241
+
242
+ inftrees.lo: $(SRCDIR)inftrees.c
243
+ -@mkdir objs 2>/dev/null || test -d objs
244
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/inftrees.o $(SRCDIR)inftrees.c
245
+ -@mv objs/inftrees.o $@
246
+
247
+ trees.lo: $(SRCDIR)trees.c
248
+ -@mkdir objs 2>/dev/null || test -d objs
249
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/trees.o $(SRCDIR)trees.c
250
+ -@mv objs/trees.o $@
251
+
252
+ zutil.lo: $(SRCDIR)zutil.c $(SRCDIR)gzguts.h
253
+ -@mkdir objs 2>/dev/null || test -d objs
254
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/zutil.o $(SRCDIR)zutil.c
255
+ -@mv objs/zutil.o $@
256
+
257
+ compress.lo: $(SRCDIR)compress.c
258
+ -@mkdir objs 2>/dev/null || test -d objs
259
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/compress.o $(SRCDIR)compress.c
260
+ -@mv objs/compress.o $@
261
+
262
+ uncompr.lo: $(SRCDIR)uncompr.c
263
+ -@mkdir objs 2>/dev/null || test -d objs
264
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/uncompr.o $(SRCDIR)uncompr.c
265
+ -@mv objs/uncompr.o $@
266
+
267
+ gzclose.lo: $(SRCDIR)gzclose.c
268
+ -@mkdir objs 2>/dev/null || test -d objs
269
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/gzclose.o $(SRCDIR)gzclose.c
270
+ -@mv objs/gzclose.o $@
271
+
272
+ gzlib.lo: $(SRCDIR)gzlib.c
273
+ -@mkdir objs 2>/dev/null || test -d objs
274
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/gzlib.o $(SRCDIR)gzlib.c
275
+ -@mv objs/gzlib.o $@
276
+
277
+ gzread.lo: $(SRCDIR)gzread.c
278
+ -@mkdir objs 2>/dev/null || test -d objs
279
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/gzread.o $(SRCDIR)gzread.c
280
+ -@mv objs/gzread.o $@
281
+
282
+ gzwrite.lo: $(SRCDIR)gzwrite.c
283
+ -@mkdir objs 2>/dev/null || test -d objs
284
+ $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/gzwrite.o $(SRCDIR)gzwrite.c
285
+ -@mv objs/gzwrite.o $@
286
+
287
+
288
+ placebo $(SHAREDLIBV): $(PIC_OBJS) libz.a $(SRCDIR)zlib.map
289
+ $(LDSHARED) $(SFLAGS) -o $@ $(PIC_OBJS) $(LDSHAREDLIBC) $(LDFLAGS)
290
+ rm -f $(SHAREDLIB) $(SHAREDLIBM)
291
+ ln -s $@ $(SHAREDLIB)
292
+ ln -s $@ $(SHAREDLIBM)
293
+ -@rmdir objs
294
+
295
+ example$(EXE): example.o $(STATICLIB)
296
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ example.o $(TEST_LIBS)
297
+
298
+ minigzip$(EXE): minigzip.o $(STATICLIB)
299
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ minigzip.o $(TEST_LIBS)
300
+
301
+ examplesh$(EXE): example.o $(SHAREDLIBV)
302
+ $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS) -L. $(SHAREDLIBV)
303
+
304
+ minigzipsh$(EXE): minigzip.o $(SHAREDLIBV)
305
+ $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS) -L. $(SHAREDLIBV)
306
+
307
+ example64$(EXE): example64.o $(STATICLIB)
308
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ example64.o $(TEST_LIBS)
309
+
310
+ minigzip64$(EXE): minigzip64.o $(STATICLIB)
311
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ minigzip64.o $(TEST_LIBS)
312
+
313
+ install-libs: $(LIBS)
314
+ -@if [ ! -d $(DESTDIR)$(exec_prefix) ]; then mkdir -p $(DESTDIR)$(exec_prefix); fi
315
+ -@if [ ! -d $(DESTDIR)$(libdir) ]; then mkdir -p $(DESTDIR)$(libdir); fi
316
+ -@if [ ! -d $(DESTDIR)$(sharedlibdir) ]; then mkdir -p $(DESTDIR)$(sharedlibdir); fi
317
+ -@if [ ! -d $(DESTDIR)$(man3dir) ]; then mkdir -p $(DESTDIR)$(man3dir); fi
318
+ -@if [ ! -d $(DESTDIR)$(pkgconfigdir) ]; then mkdir -p $(DESTDIR)$(pkgconfigdir); fi
319
+ rm -f $(DESTDIR)$(libdir)/$(STATICLIB)
320
+ cp $(STATICLIB) $(DESTDIR)$(libdir)
321
+ chmod 644 $(DESTDIR)$(libdir)/$(STATICLIB)
322
+ -@($(RANLIB) $(DESTDIR)$(libdir)/libz.a || true) >/dev/null 2>&1
323
+ -@if test -n "$(SHAREDLIBV)"; then \
324
+ rm -f $(DESTDIR)$(sharedlibdir)/$(SHAREDLIBV); \
325
+ cp $(SHAREDLIBV) $(DESTDIR)$(sharedlibdir); \
326
+ echo "cp $(SHAREDLIBV) $(DESTDIR)$(sharedlibdir)"; \
327
+ chmod 755 $(DESTDIR)$(sharedlibdir)/$(SHAREDLIBV); \
328
+ echo "chmod 755 $(DESTDIR)$(sharedlibdir)/$(SHAREDLIBV)"; \
329
+ rm -f $(DESTDIR)$(sharedlibdir)/$(SHAREDLIB) $(DESTDIR)$(sharedlibdir)/$(SHAREDLIBM); \
330
+ ln -s $(SHAREDLIBV) $(DESTDIR)$(sharedlibdir)/$(SHAREDLIB); \
331
+ ln -s $(SHAREDLIBV) $(DESTDIR)$(sharedlibdir)/$(SHAREDLIBM); \
332
+ ($(LDCONFIG) || true) >/dev/null 2>&1; \
333
+ fi
334
+ rm -f $(DESTDIR)$(man3dir)/zlib.3
335
+ cp $(SRCDIR)zlib.3 $(DESTDIR)$(man3dir)
336
+ chmod 644 $(DESTDIR)$(man3dir)/zlib.3
337
+ rm -f $(DESTDIR)$(pkgconfigdir)/zlib.pc
338
+ cp zlib.pc $(DESTDIR)$(pkgconfigdir)
339
+ chmod 644 $(DESTDIR)$(pkgconfigdir)/zlib.pc
340
+ # The ranlib in install is needed on NeXTSTEP which checks file times
341
+ # ldconfig is for Linux
342
+
343
+ install: install-libs
344
+ -@if [ ! -d $(DESTDIR)$(includedir) ]; then mkdir -p $(DESTDIR)$(includedir); fi
345
+ rm -f $(DESTDIR)$(includedir)/zlib.h $(DESTDIR)$(includedir)/zconf.h
346
+ cp $(SRCDIR)zlib.h zconf.h $(DESTDIR)$(includedir)
347
+ chmod 644 $(DESTDIR)$(includedir)/zlib.h $(DESTDIR)$(includedir)/zconf.h
348
+
349
+ uninstall:
350
+ cd $(DESTDIR)$(includedir) && rm -f zlib.h zconf.h
351
+ cd $(DESTDIR)$(libdir) && rm -f libz.a; \
352
+ if test -n "$(SHAREDLIBV)" -a -f $(SHAREDLIBV); then \
353
+ rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \
354
+ fi
355
+ cd $(DESTDIR)$(man3dir) && rm -f zlib.3
356
+ cd $(DESTDIR)$(pkgconfigdir) && rm -f zlib.pc
357
+
358
+ docs: zlib.3.pdf
359
+
360
+ zlib.3.pdf: $(SRCDIR)zlib.3
361
+ groff -mandoc -f H -T ps $(SRCDIR)zlib.3 | ps2pdf - $@
362
+
363
+ # zconf.h.cmakein: $(SRCDIR)zconf.h.in
364
+ # -@ TEMPFILE=zconfh_$$; \
365
+ # echo "/#define ZCONF_H/ a\\\\\n#cmakedefine Z_PREFIX\\\\\n#cmakedefine Z_HAVE_UNISTD_H\n" >> $$TEMPFILE &&\
366
+ # sed -f $$TEMPFILE $(SRCDIR)zconf.h.in > $@ &&\
367
+ # touch -r $(SRCDIR)zconf.h.in $@ &&\
368
+ # rm $$TEMPFILE
369
+ #
370
+
371
+ zconf: $(SRCDIR)zconf.h.in
372
+ cp -p $(SRCDIR)zconf.h.in zconf.h
373
+
374
+ minizip-test: static
375
+ cd contrib/minizip && { CC="$(CC)" CFLAGS="$(CFLAGS)" $(MAKE) test ; cd ../.. ; }
376
+
377
+ minizip-clean:
378
+ cd contrib/minizip && { $(MAKE) clean ; cd ../.. ; }
379
+
380
+ mostlyclean: clean
381
+ clean: minizip-clean
382
+ rm -f *.o *.lo *~ \
383
+ example$(EXE) minigzip$(EXE) examplesh$(EXE) minigzipsh$(EXE) \
384
+ example64$(EXE) minigzip64$(EXE) \
385
+ infcover \
386
+ libz.* foo.gz so_locations \
387
+ _match.s maketree contrib/infback9/*.o
388
+ rm -rf objs
389
+ rm -f *.gcda *.gcno *.gcov
390
+ rm -f contrib/infback9/*.gcda contrib/infback9/*.gcno contrib/infback9/*.gcov
391
+
392
+ maintainer-clean: distclean
393
+ distclean: clean zconf # zconf.h.cmakein
394
+ rm -f Makefile zlib.pc configure.log
395
+ -@rm -f .DS_Store
396
+ @if [ -f Makefile.in ]; then \
397
+ printf 'all:\n\t-@echo "Please use ./configure first. Thank you."\n' > Makefile ; \
398
+ printf '\ndistclean:\n\tmake -f Makefile.in distclean\n' >> Makefile ; \
399
+ touch -r $(SRCDIR)Makefile.in Makefile ; fi
400
+
401
+ tags:
402
+ etags $(SRCDIR)*.[ch]
403
+
404
+ adler32.o: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h
405
+ zutil.o: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)gzguts.h
406
+ gzclose.o gzlib.o gzread.o gzwrite.o: $(SRCDIR)zlib.h zconf.h $(SRCDIR)gzguts.h
407
+ compress.o example.o minigzip.o uncompr.o: $(SRCDIR)zlib.h zconf.h
408
+ crc32.o: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)crc32.h
409
+ deflate.o: $(SRCDIR)deflate.h $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h
410
+ infback.o inflate.o: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)inftrees.h $(SRCDIR)inflate.h $(SRCDIR)inffast.h $(SRCDIR)inffixed.h
411
+ inffast.o: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)inftrees.h $(SRCDIR)inflate.h $(SRCDIR)inffast.h
412
+ inftrees.o: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)inftrees.h
413
+ trees.o: $(SRCDIR)deflate.h $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)trees.h
414
+ crc32_vx.o: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)contrib/crc32vx/crc32_vx_hooks.h
415
+
416
+ adler32.lo: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h
417
+ zutil.lo: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)gzguts.h
418
+ gzclose.lo gzlib.lo gzread.lo gzwrite.lo: $(SRCDIR)zlib.h zconf.h $(SRCDIR)gzguts.h
419
+ compress.lo example.lo minigzip.lo uncompr.lo: $(SRCDIR)zlib.h zconf.h
420
+ crc32.lo: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)crc32.h
421
+ deflate.lo: $(SRCDIR)deflate.h $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h
422
+ infback.lo inflate.lo: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)inftrees.h $(SRCDIR)inflate.h $(SRCDIR)inffast.h $(SRCDIR)inffixed.h
423
+ inffast.lo: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)inftrees.h $(SRCDIR)inflate.h $(SRCDIR)inffast.h
424
+ inftrees.lo: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)inftrees.h
425
+ trees.lo: $(SRCDIR)deflate.h $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)trees.h
426
+ crc32_vx.lo: $(SRCDIR)zutil.h $(SRCDIR)zlib.h zconf.h $(SRCDIR)contrib/crc32vx/crc32_vx_hooks.h
@@ -0,0 +1,115 @@
1
+ ZLIB DATA COMPRESSION LIBRARY
2
+
3
+ zlib 1.3.2 is a general purpose data compression library. All the code is
4
+ thread safe (though see the FAQ for caveats). The data format used by the zlib
5
+ library is described by RFCs (Request for Comments) 1950 to 1952 at
6
+ https://datatracker.ietf.org/doc/html/rfc1950 (zlib format), rfc1951 (deflate
7
+ format) and rfc1952 (gzip format).
8
+
9
+ All functions of the compression library are documented in the file zlib.h
10
+ (volunteer to write man pages welcome, contact zlib@gzip.org). A usage example
11
+ of the library is given in the file test/example.c which also tests that
12
+ the library is working correctly. Another example is given in the file
13
+ test/minigzip.c. The compression library itself is composed of all source
14
+ files in the root directory.
15
+
16
+ To compile all files and run the test program, follow the instructions given at
17
+ the top of Makefile.in. In short "./configure; make test", and if that goes
18
+ well, "make install" should work for most flavors of Unix. For Windows, use
19
+ one of the special makefiles in win32/ or contrib/vstudio/ . For VMS, use
20
+ make_vms.com.
21
+
22
+ Questions about zlib should be sent to <zlib@gzip.org>, or to Gilles Vollant
23
+ <info@winimage.com> for the Windows DLL version. The zlib home page is
24
+ https://zlib.net/ . Before reporting a problem, please check this site to
25
+ verify that you have the latest version of zlib; otherwise get the latest
26
+ version and check whether the problem still exists or not.
27
+
28
+ PLEASE read the zlib FAQ https://zlib.net/zlib_faq.html before asking for help.
29
+
30
+ Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
31
+ issue of Dr. Dobb's Journal; a copy of the article is available at
32
+ https://zlib.net/nelson/ .
33
+
34
+ The changes made in version 1.3.2 are documented in the file ChangeLog.
35
+
36
+ Unsupported third party contributions are provided in directory contrib/ .
37
+
38
+ zlib is available in Java using the java.util.zip package. Follow the API
39
+ Documentation link at: https://docs.oracle.com/search/?q=java.util.zip .
40
+
41
+ A Perl interface to zlib and bzip2 written by Paul Marquess <pmqs@cpan.org>
42
+ can be found at https://github.com/pmqs/IO-Compress .
43
+
44
+ A Python interface to zlib written by A.M. Kuchling <amk@amk.ca> is
45
+ available in Python 1.5 and later versions, see
46
+ https://docs.python.org/3/library/zlib.html .
47
+
48
+ zlib is built into tcl: https://wiki.tcl-lang.org/page/zlib .
49
+
50
+ An experimental package to read and write files in .zip format, written on top
51
+ of zlib by Gilles Vollant <info@winimage.com>, is available in the
52
+ contrib/minizip directory of zlib.
53
+
54
+
55
+ Notes for some targets:
56
+
57
+ - For Windows DLL versions, please see win32/DLL_FAQ.txt
58
+
59
+ - For 64-bit Irix, deflate.c must be compiled without any optimization. With
60
+ -O, one libpng test fails. The test works in 32 bit mode (with the -n32
61
+ compiler flag). The compiler bug has been reported to SGI.
62
+
63
+ - zlib doesn't work with gcc 2.6.3 on a DEC 3000/300LX under OSF/1 2.1 it works
64
+ when compiled with cc.
65
+
66
+ - On Digital Unix 4.0D (formerly OSF/1) on AlphaServer, the cc option -std1 is
67
+ necessary to get gzprintf working correctly. This is done by configure.
68
+
69
+ - zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works with
70
+ other compilers. Use "make test" to check your compiler.
71
+
72
+ - For PalmOs, see https://palmzlib.sourceforge.net/
73
+
74
+
75
+ Acknowledgments:
76
+
77
+ The deflate format used by zlib was defined by Phil Katz. The deflate and
78
+ zlib specifications were written by L. Peter Deutsch. Thanks to all the
79
+ people who reported problems and suggested various improvements in zlib; they
80
+ are too numerous to cite here.
81
+
82
+ Copyright notice:
83
+
84
+ (C) 1995-2026 Jean-loup Gailly and Mark Adler
85
+
86
+ This software is provided 'as-is', without any express or implied
87
+ warranty. In no event will the authors be held liable for any damages
88
+ arising from the use of this software.
89
+
90
+ Permission is granted to anyone to use this software for any purpose,
91
+ including commercial applications, and to alter it and redistribute it
92
+ freely, subject to the following restrictions:
93
+
94
+ 1. The origin of this software must not be misrepresented; you must not
95
+ claim that you wrote the original software. If you use this software
96
+ in a product, an acknowledgment in the product documentation would be
97
+ appreciated but is not required.
98
+ 2. Altered source versions must be plainly marked as such, and must not be
99
+ misrepresented as being the original software.
100
+ 3. This notice may not be removed or altered from any source distribution.
101
+
102
+ Jean-loup Gailly Mark Adler
103
+ jloup@gzip.org madler@alumni.caltech.edu
104
+
105
+ If you use the zlib library in a product, we would appreciate *not* receiving
106
+ lengthy legal documents to sign. The sources are provided for free but without
107
+ warranty of any kind. The library has been entirely written by Jean-loup
108
+ Gailly and Mark Adler; it does not include third-party code. We make all
109
+ contributions to and distributions of this project solely in our personal
110
+ capacity, and are not conveying any rights to any intellectual property of
111
+ any third parties.
112
+
113
+ If you redistribute modified sources, we would appreciate that you include in
114
+ the file ChangeLog history information documenting your changes. Please read
115
+ the FAQ for more information on the distribution of modified source versions.
@@ -0,0 +1,79 @@
1
+ # For building with cmake at least version 3.12 (minizip 3.12) is needed
2
+
3
+ In most cases the usual
4
+
5
+ cmake -S . -B build -D CMAKE_BUILD_TYPE=Release
6
+
7
+ will create everything you need, however if you want something off default you can adjust several options fit your needs.
8
+ Every option is list below (excluding the cmake-standard options), they can be set via cmake-gui or on cmdline with
9
+
10
+ -D<option>=ON/OFF
11
+
12
+ ## ZLIB-options with defaults ##
13
+
14
+ ZLIB_BUILD_TESTING=ON -- Enable Zlib Examples as tests
15
+
16
+ ZLIB_BUILD_SHARED=ON -- Enable building zlib shared library
17
+
18
+ ZLIB_BUILD_STATIC=ON -- Enable building zlib static library
19
+
20
+ ZLIB_BUILD_MINIZIP=ON -- Enable building libminizip contrib library
21
+
22
+ If this option is turned on, additional options are available from minizip (see below)
23
+
24
+ ZLIB_INSTALL=ON -- Enable installation of zlib
25
+
26
+ ZLIB_PREFIX=OFF -- prefix for all types and library functions, see zconf.h.in
27
+
28
+ This option is only on windows available and may/will be turned off and removed somewhen in the future.
29
+ If you rely cmake for finding and using zlib, this can be turned off, as `zlib1.dll` will never be used.
30
+
31
+ ## minizip-options with defaults ##
32
+
33
+ MINIZIP_BUILD_SHARED=ON -- Enable building minizip shared library
34
+
35
+ MINIZIP_BUILD_STATIC=ON -- Enable building minizip static library
36
+
37
+ MINIZIP_BUILD_TESTING=ON -- Enable testing of minizip
38
+
39
+ MINIZIP_ENABLE_BZIP2=ON -- Build minizip withj bzip2 support
40
+
41
+ A usable installation of bzip2 is needed or config will fail. Turn this option of in this case.
42
+
43
+ MINIZIP_INSTALL=ON -- Enable installation of minizip
44
+
45
+ This option is only available on mingw as they tend to name this lib different. Maybe this will also be
46
+ removed in the future as. If you rely cmake for finding and using zlib, this can be turned off, as
47
+ the other file will never be used.
48
+
49
+ ## Using the libs ##
50
+
51
+ To pull in what you need it's enough to just write
52
+
53
+ find_package(ZLIB CONFIG)
54
+
55
+ or
56
+
57
+ find_package(minizip CONFIG)
58
+
59
+ in your CMakeLists.txt, however it is advised to specify what you really want via:
60
+
61
+ find_package(ZLIB CONFIG COMPONENTS shared static REQUIRED)
62
+
63
+ or
64
+
65
+ find_package(minizip CONFIG COMPONENTS shared static REQUIRED)
66
+
67
+ As it's possible to only build the shared or the static lib, you can make sure that everything you need
68
+ is found. If no COMPONENTS are requested, everything needs to be found to satisfy your request. If the
69
+ libraries are optional in you project, you can omit the REQUIRED and check yourself if the targets you
70
+ want to link against are created.
71
+
72
+ When you search for minizip, it will search zlib for you, so only one of both is needed.
73
+
74
+ ## Imported targets ##
75
+
76
+ When found the following targets are created for you:
77
+
78
+ ZLIB::ZLIB and ZLIB::ZLIBSTATIC -- for zlib
79
+ MINIZIP::minizip and MINIZIP::minizipstatic -- for minizip