@cpp.js/package-tiff 1.0.0-beta.21 → 1.0.0-beta.22

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 (23) hide show
  1. package/cppjs.config.js +1 -0
  2. package/dist/prebuilt/CMakeLists.txt +1 -1
  3. package/dist/prebuilt/iOS-iphoneos/lib/libtiff.a +0 -0
  4. package/dist/prebuilt/iOS-iphoneos/lib/libtiffxx.a +0 -0
  5. package/dist/prebuilt/iOS-iphonesimulator/lib/libtiff.a +0 -0
  6. package/dist/prebuilt/iOS-iphonesimulator/lib/libtiffxx.a +0 -0
  7. package/dist/prebuilt/tiff.xcframework/Info.plist +5 -5
  8. package/dist/prebuilt/tiff.xcframework/ios-arm64_arm64e/libtiff.a +0 -0
  9. package/dist/prebuilt/tiff.xcframework/ios-arm64_arm64e_x86_64-simulator/libtiff.a +0 -0
  10. package/dist/prebuilt/tiffxx.xcframework/Info.plist +50 -0
  11. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e/Headers/tiff.h +899 -0
  12. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e/Headers/tiffconf.h +144 -0
  13. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e/Headers/tiffio.h +653 -0
  14. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e/Headers/tiffio.hxx +39 -0
  15. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e/Headers/tiffvers.h +36 -0
  16. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e/libtiffxx.a +0 -0
  17. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/tiff.h +899 -0
  18. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/tiffconf.h +144 -0
  19. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/tiffio.h +653 -0
  20. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/tiffio.hxx +39 -0
  21. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e_x86_64-simulator/Headers/tiffvers.h +36 -0
  22. package/dist/prebuilt/tiffxx.xcframework/ios-arm64_arm64e_x86_64-simulator/libtiffxx.a +0 -0
  23. package/package.json +1 -1
@@ -0,0 +1,36 @@
1
+ /* tiffvers.h version information is updated according to version information
2
+ * in configure.ac */
3
+
4
+ /* clang-format off */
5
+
6
+ /* clang-format disabled because FindTIFF.cmake is very sensitive to the
7
+ * formatting of below line being a single line.
8
+ * Furthermore, configure_file variables of type "" are
9
+ * modified by clang-format and won't be substituted by CMake.
10
+ */
11
+ #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.6.0\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
12
+ /*
13
+ * This define can be used in code that requires
14
+ * compilation-related definitions specific to a
15
+ * version or versions of the library. Runtime
16
+ * version checking should be done based on the
17
+ * string returned by TIFFGetVersion.
18
+ */
19
+ #define TIFFLIB_VERSION 20230908
20
+
21
+ /* The following defines have been added in 4.5.0 */
22
+ #define TIFFLIB_MAJOR_VERSION 4
23
+ #define TIFFLIB_MINOR_VERSION 6
24
+ #define TIFFLIB_MICRO_VERSION 0
25
+ #define TIFFLIB_VERSION_STR_MAJ_MIN_MIC "4.6.0"
26
+
27
+ /* Macro added in 4.5.0. Returns TRUE if the current libtiff version is
28
+ * greater or equal to major.minor.micro
29
+ */
30
+ #define TIFFLIB_AT_LEAST(major, minor, micro) \
31
+ (TIFFLIB_MAJOR_VERSION > (major) || \
32
+ (TIFFLIB_MAJOR_VERSION == (major) && TIFFLIB_MINOR_VERSION > (minor)) || \
33
+ (TIFFLIB_MAJOR_VERSION == (major) && TIFFLIB_MINOR_VERSION == (minor) && \
34
+ TIFFLIB_MICRO_VERSION >= (micro)))
35
+
36
+ /* clang-format on */