@cpp.js/package-zlib 1.0.0 → 2.0.0-beta.1

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 (41) hide show
  1. package/LICENSE +17 -19
  2. package/cppjs.config.js +9 -7
  3. package/package.json +6 -10
  4. package/CHANGELOG.md +0 -13
  5. package/README.md +0 -50
  6. package/assets/CMakeLists.txt +0 -234
  7. package/cppjs-package-zlib.podspec +0 -13
  8. package/cppjs.build.js +0 -6
  9. package/dist/prebuilt/Android-arm64-v8a/include/zconf.h +0 -545
  10. package/dist/prebuilt/Android-arm64-v8a/include/zlib.h +0 -1938
  11. package/dist/prebuilt/Android-arm64-v8a/lib/libz.so +0 -0
  12. package/dist/prebuilt/Android-arm64-v8a/share/man/man3/zlib.3 +0 -149
  13. package/dist/prebuilt/Android-arm64-v8a/share/pkgconfig/zlib.pc +0 -13
  14. package/dist/prebuilt/Android-x86_64/include/zconf.h +0 -545
  15. package/dist/prebuilt/Android-x86_64/include/zlib.h +0 -1938
  16. package/dist/prebuilt/Android-x86_64/lib/libz.so +0 -0
  17. package/dist/prebuilt/Android-x86_64/share/man/man3/zlib.3 +0 -149
  18. package/dist/prebuilt/Android-x86_64/share/pkgconfig/zlib.pc +0 -13
  19. package/dist/prebuilt/CMakeLists.txt +0 -44
  20. package/dist/prebuilt/Emscripten-x86_64/include/zconf.h +0 -545
  21. package/dist/prebuilt/Emscripten-x86_64/include/zlib.h +0 -1938
  22. package/dist/prebuilt/Emscripten-x86_64/lib/libz.a +0 -0
  23. package/dist/prebuilt/Emscripten-x86_64/share/man/man3/zlib.3 +0 -149
  24. package/dist/prebuilt/Emscripten-x86_64/share/pkgconfig/zlib.pc +0 -13
  25. package/dist/prebuilt/iOS-iphoneos/include/zconf.h +0 -545
  26. package/dist/prebuilt/iOS-iphoneos/include/zlib.h +0 -1938
  27. package/dist/prebuilt/iOS-iphoneos/lib/libz.a +0 -0
  28. package/dist/prebuilt/iOS-iphoneos/share/man/man3/zlib.3 +0 -149
  29. package/dist/prebuilt/iOS-iphoneos/share/pkgconfig/zlib.pc +0 -13
  30. package/dist/prebuilt/iOS-iphonesimulator/include/zconf.h +0 -545
  31. package/dist/prebuilt/iOS-iphonesimulator/include/zlib.h +0 -1938
  32. package/dist/prebuilt/iOS-iphonesimulator/lib/libz.a +0 -0
  33. package/dist/prebuilt/iOS-iphonesimulator/share/man/man3/zlib.3 +0 -149
  34. package/dist/prebuilt/iOS-iphonesimulator/share/pkgconfig/zlib.pc +0 -13
  35. package/z.xcframework/Info.plist +0 -50
  36. package/z.xcframework/ios-arm64_arm64e/Headers/zconf.h +0 -545
  37. package/z.xcframework/ios-arm64_arm64e/Headers/zlib.h +0 -1938
  38. package/z.xcframework/ios-arm64_arm64e/libz.a +0 -0
  39. package/z.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/zconf.h +0 -545
  40. package/z.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/zlib.h +0 -1938
  41. package/z.xcframework/ios-arm64_arm64e_x86_64-simulator/libz.a +0 -0
@@ -1,149 +0,0 @@
1
- .TH ZLIB 3 "22 Jan 2024"
2
- .SH NAME
3
- zlib \- compression/decompression library
4
- .SH SYNOPSIS
5
- [see
6
- .I zlib.h
7
- for full description]
8
- .SH DESCRIPTION
9
- The
10
- .I zlib
11
- library is a general purpose data compression library.
12
- The code is thread safe, assuming that the standard library functions
13
- used are thread safe, such as memory allocation routines.
14
- It provides in-memory compression and decompression functions,
15
- including integrity checks of the uncompressed data.
16
- This version of the library supports only one compression method (deflation)
17
- but other algorithms may be added later
18
- with the same stream interface.
19
- .LP
20
- Compression can be done in a single step if the buffers are large enough
21
- or can be done by repeated calls of the compression function.
22
- In the latter case,
23
- the application must provide more input and/or consume the output
24
- (providing more output space) before each call.
25
- .LP
26
- The library also supports reading and writing files in
27
- .IR gzip (1)
28
- (.gz) format
29
- with an interface similar to that of stdio.
30
- .LP
31
- The library does not install any signal handler.
32
- The decoder checks the consistency of the compressed data,
33
- so the library should never crash even in the case of corrupted input.
34
- .LP
35
- All functions of the compression library are documented in the file
36
- .IR zlib.h .
37
- The distribution source includes examples of use of the library
38
- in the files
39
- .I test/example.c
40
- and
41
- .IR test/minigzip.c,
42
- as well as other examples in the
43
- .IR examples/
44
- directory.
45
- .LP
46
- Changes to this version are documented in the file
47
- .I ChangeLog
48
- that accompanies the source.
49
- .LP
50
- .I zlib
51
- is built in to many languages and operating systems, including but not limited to
52
- Java, Python, .NET, PHP, Perl, Ruby, Swift, and Go.
53
- .LP
54
- An experimental package to read and write files in the .zip format,
55
- written on top of
56
- .I zlib
57
- by Gilles Vollant (info@winimage.com),
58
- is available at:
59
- .IP
60
- http://www.winimage.com/zLibDll/minizip.html
61
- and also in the
62
- .I contrib/minizip
63
- directory of the main
64
- .I zlib
65
- source distribution.
66
- .SH "SEE ALSO"
67
- The
68
- .I zlib
69
- web site can be found at:
70
- .IP
71
- http://zlib.net/
72
- .LP
73
- The data format used by the
74
- .I zlib
75
- library is described by RFC
76
- (Request for Comments) 1950 to 1952 in the files:
77
- .IP
78
- http://tools.ietf.org/html/rfc1950 (for the zlib header and trailer format)
79
- .br
80
- http://tools.ietf.org/html/rfc1951 (for the deflate compressed data format)
81
- .br
82
- http://tools.ietf.org/html/rfc1952 (for the gzip header and trailer format)
83
- .LP
84
- Mark Nelson wrote an article about
85
- .I zlib
86
- for the Jan. 1997 issue of Dr. Dobb's Journal;
87
- a copy of the article is available at:
88
- .IP
89
- http://marknelson.us/1997/01/01/zlib-engine/
90
- .SH "REPORTING PROBLEMS"
91
- Before reporting a problem,
92
- please check the
93
- .I zlib
94
- web site to verify that you have the latest version of
95
- .IR zlib ;
96
- otherwise,
97
- obtain the latest version and see if the problem still exists.
98
- Please read the
99
- .I zlib
100
- FAQ at:
101
- .IP
102
- http://zlib.net/zlib_faq.html
103
- .LP
104
- before asking for help.
105
- Send questions and/or comments to zlib@gzip.org,
106
- or (for the Windows DLL version) to Gilles Vollant (info@winimage.com).
107
- .SH AUTHORS AND LICENSE
108
- Version 1.3.1
109
- .LP
110
- Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler
111
- .LP
112
- This software is provided 'as-is', without any express or implied
113
- warranty. In no event will the authors be held liable for any damages
114
- arising from the use of this software.
115
- .LP
116
- Permission is granted to anyone to use this software for any purpose,
117
- including commercial applications, and to alter it and redistribute it
118
- freely, subject to the following restrictions:
119
- .LP
120
- .nr step 1 1
121
- .IP \n[step]. 3
122
- The origin of this software must not be misrepresented; you must not
123
- claim that you wrote the original software. If you use this software
124
- in a product, an acknowledgment in the product documentation would be
125
- appreciated but is not required.
126
- .IP \n+[step].
127
- Altered source versions must be plainly marked as such, and must not be
128
- misrepresented as being the original software.
129
- .IP \n+[step].
130
- This notice may not be removed or altered from any source distribution.
131
- .LP
132
- Jean-loup Gailly Mark Adler
133
- .br
134
- jloup@gzip.org madler@alumni.caltech.edu
135
- .LP
136
- The deflate format used by
137
- .I zlib
138
- was defined by Phil Katz.
139
- The deflate and
140
- .I zlib
141
- specifications were written by L. Peter Deutsch.
142
- Thanks to all the people who reported problems and suggested various
143
- improvements in
144
- .IR zlib ;
145
- who are too numerous to cite here.
146
- .LP
147
- UNIX manual page by R. P. C. Rodgers,
148
- U.S. National Library of Medicine (rodgers@nlm.nih.gov).
149
- .\" end of man page
@@ -1,13 +0,0 @@
1
- prefix=/Users/bugra/Documents/cpp.js/packages/cppjs-package-zlib/.cppjs/build/Source-Release/prebuilt/iOS-iphonesimulator
2
- exec_prefix=/Users/bugra/Documents/cpp.js/packages/cppjs-package-zlib/.cppjs/build/Source-Release/prebuilt/iOS-iphonesimulator
3
- libdir=/Users/bugra/Documents/cpp.js/packages/cppjs-package-zlib/.cppjs/build/Source-Release/prebuilt/iOS-iphonesimulator/lib
4
- sharedlibdir=/Users/bugra/Documents/cpp.js/packages/cppjs-package-zlib/.cppjs/build/Source-Release/prebuilt/iOS-iphonesimulator/lib
5
- includedir=/Users/bugra/Documents/cpp.js/packages/cppjs-package-zlib/.cppjs/build/Source-Release/prebuilt/iOS-iphonesimulator/include
6
-
7
- Name: zlib
8
- Description: zlib compression library
9
- Version: 1.3.1
10
-
11
- Requires:
12
- Libs: -L${libdir} -L${sharedlibdir} -lz
13
- Cflags: -I${includedir}
@@ -1,50 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>AvailableLibraries</key>
6
- <array>
7
- <dict>
8
- <key>BinaryPath</key>
9
- <string>libz.a</string>
10
- <key>HeadersPath</key>
11
- <string>Headers</string>
12
- <key>LibraryIdentifier</key>
13
- <string>ios-arm64_arm64e</string>
14
- <key>LibraryPath</key>
15
- <string>libz.a</string>
16
- <key>SupportedArchitectures</key>
17
- <array>
18
- <string>arm64</string>
19
- <string>arm64e</string>
20
- </array>
21
- <key>SupportedPlatform</key>
22
- <string>ios</string>
23
- </dict>
24
- <dict>
25
- <key>BinaryPath</key>
26
- <string>libz.a</string>
27
- <key>HeadersPath</key>
28
- <string>Headers</string>
29
- <key>LibraryIdentifier</key>
30
- <string>ios-arm64_arm64e_x86_64-simulator</string>
31
- <key>LibraryPath</key>
32
- <string>libz.a</string>
33
- <key>SupportedArchitectures</key>
34
- <array>
35
- <string>arm64</string>
36
- <string>arm64e</string>
37
- <string>x86_64</string>
38
- </array>
39
- <key>SupportedPlatform</key>
40
- <string>ios</string>
41
- <key>SupportedPlatformVariant</key>
42
- <string>simulator</string>
43
- </dict>
44
- </array>
45
- <key>CFBundlePackageType</key>
46
- <string>XFWK</string>
47
- <key>XCFrameworkFormatVersion</key>
48
- <string>1.0</string>
49
- </dict>
50
- </plist>