@img/sharp-libvips-dev-wasm32 1.3.0-rc.1 → 1.3.0-rc.10

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 (191) hide show
  1. package/README.md +23 -23
  2. package/include/aom/aom_codec.h +1 -1
  3. package/include/aom/aom_decoder.h +4 -0
  4. package/include/aom/aom_encoder.h +19 -8
  5. package/include/aom/aom_ext_ratectrl.h +664 -0
  6. package/include/aom/aom_image.h +93 -30
  7. package/include/aom/aom_tpl.h +99 -0
  8. package/include/aom/aomcx.h +89 -16
  9. package/include/aom/aomdx.h +12 -0
  10. package/include/expat.h +15 -3
  11. package/include/expat_config.h +6 -6
  12. package/include/expat_external.h +4 -4
  13. package/include/glib-2.0/gio/gdbusconnection.h +2 -8
  14. package/include/glib-2.0/gio/gfileattribute.h +1 -1
  15. package/include/glib-2.0/gio/gfileinfo.h +5 -0
  16. package/include/glib-2.0/gio/gicon.h +1 -1
  17. package/include/glib-2.0/gio/gio-autocleanups.h +0 -1
  18. package/include/glib-2.0/gio/gio-visibility.h +34 -0
  19. package/include/glib-2.0/gio/gio.h +2 -0
  20. package/include/glib-2.0/gio/gioenums.h +66 -44
  21. package/include/glib-2.0/gio/gioenumtypes.h +2 -0
  22. package/include/glib-2.0/gio/giptosmessage.h +46 -0
  23. package/include/glib-2.0/gio/gipv6tclassmessage.h +46 -0
  24. package/include/glib-2.0/gio/gresolver.h +1 -1
  25. package/include/glib-2.0/gio/gsettings.h +1 -1
  26. package/include/glib-2.0/gio/gsocketcontrolmessage.h +2 -0
  27. package/include/glib-2.0/glib/gatomic.h +26 -2
  28. package/include/glib-2.0/glib/gfileutils.h +2 -2
  29. package/include/glib-2.0/glib/ghook.h +3 -1
  30. package/include/glib-2.0/glib/giochannel.h +1 -1
  31. package/include/glib-2.0/glib/gkeyfile.h +1 -1
  32. package/include/glib-2.0/glib/glib-visibility.h +34 -0
  33. package/include/glib-2.0/glib/gmacros.h +32 -0
  34. package/include/glib-2.0/glib/gmain.h +4 -0
  35. package/include/glib-2.0/glib/gmarkup.h +18 -1
  36. package/include/glib-2.0/glib/gmem.h +4 -4
  37. package/include/glib-2.0/glib/gmessages.h +7 -9
  38. package/include/glib-2.0/glib/gnode.h +1 -1
  39. package/include/glib-2.0/glib/goption.h +1 -1
  40. package/include/glib-2.0/glib/gsequence.h +2 -2
  41. package/include/glib-2.0/glib/gslice.h +12 -4
  42. package/include/glib-2.0/glib/gspawn.h +1 -1
  43. package/include/glib-2.0/glib/gstrfuncs.h +191 -1
  44. package/include/glib-2.0/glib/gtestutils.h +6 -3
  45. package/include/glib-2.0/glib/gtimer.h +1 -0
  46. package/include/glib-2.0/glib/guri.h +3 -3
  47. package/include/glib-2.0/glib/gutils.h +10 -1
  48. package/include/glib-2.0/glib/gvarianttype.h +16 -16
  49. package/include/glib-2.0/glib/gversionmacros.h +22 -0
  50. package/include/glib-2.0/gmodule/gmodule-visibility.h +34 -0
  51. package/include/glib-2.0/gmodule.h +1 -1
  52. package/include/glib-2.0/gobject/gbinding.h +1 -1
  53. package/include/glib-2.0/gobject/gobject-visibility.h +34 -0
  54. package/include/glib-2.0/gobject/gobject.h +1 -1
  55. package/include/glib-2.0/gobject/gparam.h +1 -1
  56. package/include/glib-2.0/gobject/gsignal.h +8 -8
  57. package/include/glib-2.0/gobject/gtype.h +17 -17
  58. package/include/hwy/aligned_allocator.h +44 -2
  59. package/include/hwy/auto_tune.h +22 -6
  60. package/include/hwy/base.h +60 -90
  61. package/include/hwy/bit_set.h +410 -0
  62. package/include/hwy/cache_control.h +3 -2
  63. package/include/hwy/detect_compiler_arch.h +134 -14
  64. package/include/hwy/detect_targets.h +82 -36
  65. package/include/hwy/highway.h +15 -0
  66. package/include/hwy/nanobenchmark.h +12 -3
  67. package/include/hwy/ops/arm_neon-inl.h +96 -25
  68. package/include/hwy/ops/arm_sve-inl.h +250 -95
  69. package/include/hwy/ops/emu128-inl.h +12 -7
  70. package/include/hwy/ops/generic_ops-inl.h +271 -131
  71. package/include/hwy/ops/loongarch_lasx-inl.h +31 -9
  72. package/include/hwy/ops/loongarch_lsx-inl.h +33 -12
  73. package/include/hwy/ops/ppc_vsx-inl.h +99 -19
  74. package/include/hwy/ops/rvv-inl.h +239 -130
  75. package/include/hwy/ops/scalar-inl.h +22 -7
  76. package/include/hwy/ops/set_macros-inl.h +163 -107
  77. package/include/hwy/ops/wasm_128-inl.h +13 -22
  78. package/include/hwy/ops/x86_128-inl.h +223 -120
  79. package/include/hwy/ops/x86_256-inl.h +70 -134
  80. package/include/hwy/ops/x86_512-inl.h +130 -134
  81. package/include/hwy/print-inl.h +2 -0
  82. package/include/hwy/profiler.h +355 -264
  83. package/include/hwy/robust_statistics.h +3 -1
  84. package/include/hwy/timer.h +44 -0
  85. package/include/lcms2.h +35 -5
  86. package/include/lcms2_plugin.h +1 -1
  87. package/include/libexif/exif-utils.h +1 -1
  88. package/include/libheif/heif.h +2 -0
  89. package/include/libheif/heif_aux_images.h +2 -2
  90. package/include/libheif/heif_brands.h +16 -4
  91. package/include/libheif/heif_color.h +147 -25
  92. package/include/libheif/heif_components.h +264 -0
  93. package/include/libheif/heif_context.h +18 -4
  94. package/include/libheif/heif_cxx.h +20 -18
  95. package/include/libheif/heif_decoding.h +63 -9
  96. package/include/libheif/heif_encoding.h +46 -12
  97. package/include/libheif/heif_error.h +15 -6
  98. package/include/libheif/heif_export.h +48 -0
  99. package/include/libheif/heif_image.h +94 -32
  100. package/include/libheif/heif_image_handle.h +54 -3
  101. package/include/libheif/heif_items.h +25 -2
  102. package/include/libheif/heif_library.h +13 -18
  103. package/include/libheif/heif_metadata.h +5 -2
  104. package/include/libheif/heif_omaf.h +104 -0
  105. package/include/libheif/heif_plugin.h +80 -13
  106. package/include/libheif/heif_properties.h +259 -5
  107. package/include/libheif/heif_regions.h +5 -3
  108. package/include/libheif/heif_security.h +24 -2
  109. package/include/libheif/heif_sequences.h +163 -14
  110. package/include/libheif/heif_text.h +161 -0
  111. package/include/libheif/heif_tiling.h +2 -2
  112. package/include/libheif/heif_uncompressed.h +29 -5
  113. package/include/libheif/heif_version.h +2 -2
  114. package/include/libpng16/png.h +637 -488
  115. package/include/libpng16/pngconf.h +2 -2
  116. package/include/libpng16/pnglibconf.h +2 -2
  117. package/include/png.h +637 -488
  118. package/include/pngconf.h +2 -2
  119. package/include/pnglibconf.h +2 -2
  120. package/include/resvg.h +3 -3
  121. package/include/tiffconf.h +9 -10
  122. package/include/tiffio.h +10 -9
  123. package/include/tiffvers.h +1 -1
  124. package/include/ultrahdr_api.h +5 -11
  125. package/include/vips/colour.h +2 -2
  126. package/include/vips/memory.h +1 -1
  127. package/include/vips/version.h +4 -4
  128. package/include/zlib.h +3 -3
  129. package/lib/glib-2.0/include/glibconfig.h +1 -3
  130. package/lib/libaom.a +0 -0
  131. package/lib/libcgif.a +0 -0
  132. package/lib/libexif.a +0 -0
  133. package/lib/libexif.la +1 -1
  134. package/lib/libexpat.a +0 -0
  135. package/lib/libexpat.la +2 -2
  136. package/lib/libffi.a +0 -0
  137. package/lib/libgio-2.0.a +0 -0
  138. package/lib/libglib-2.0.a +0 -0
  139. package/lib/libgmodule-2.0.a +0 -0
  140. package/lib/libgobject-2.0.a +0 -0
  141. package/lib/libgthread-2.0.a +0 -0
  142. package/lib/libheif.a +0 -0
  143. package/lib/libhwy.a +0 -0
  144. package/lib/libimagequant.a +0 -0
  145. package/lib/libjpeg.a +0 -0
  146. package/lib/liblcms2.a +0 -0
  147. package/lib/libpng.a +0 -0
  148. package/lib/libpng.la +2 -2
  149. package/lib/libpng16.a +0 -0
  150. package/lib/libpng16.la +2 -2
  151. package/lib/libresvg.a +0 -0
  152. package/lib/libsharpyuv.a +0 -0
  153. package/lib/libtiff.a +0 -0
  154. package/lib/libuhdr.a +0 -0
  155. package/lib/libvips-cpp.a +0 -0
  156. package/lib/libvips.a +0 -0
  157. package/lib/libwebp.a +0 -0
  158. package/lib/libwebpdecoder.a +0 -0
  159. package/lib/libwebpdemux.a +0 -0
  160. package/lib/libwebpmux.a +0 -0
  161. package/lib/libz.a +0 -0
  162. package/lib/pkgconfig/aom.pc +2 -2
  163. package/lib/pkgconfig/cgif.pc +1 -1
  164. package/lib/pkgconfig/expat.pc +1 -1
  165. package/lib/pkgconfig/gio-2.0.pc +1 -1
  166. package/lib/pkgconfig/glib-2.0.pc +1 -1
  167. package/lib/pkgconfig/gmodule-2.0.pc +1 -1
  168. package/lib/pkgconfig/gmodule-export-2.0.pc +1 -1
  169. package/lib/pkgconfig/gmodule-no-export-2.0.pc +1 -1
  170. package/lib/pkgconfig/gobject-2.0.pc +1 -1
  171. package/lib/pkgconfig/gthread-2.0.pc +1 -1
  172. package/lib/pkgconfig/lcms2.pc +1 -1
  173. package/lib/pkgconfig/libexif.pc +1 -1
  174. package/lib/pkgconfig/libheif.pc +1 -1
  175. package/lib/pkgconfig/libhwy.pc +3 -4
  176. package/lib/pkgconfig/libpng.pc +1 -1
  177. package/lib/pkgconfig/libpng16.pc +1 -1
  178. package/lib/pkgconfig/libsharpyuv.pc +1 -1
  179. package/lib/pkgconfig/libtiff-4.pc +2 -2
  180. package/lib/pkgconfig/libwebp.pc +1 -1
  181. package/lib/pkgconfig/libwebpdecoder.pc +11 -0
  182. package/lib/pkgconfig/libwebpmux.pc +1 -1
  183. package/lib/pkgconfig/vips-cpp.pc +1 -1
  184. package/lib/pkgconfig/vips.pc +1 -1
  185. package/package.json +1 -1
  186. package/versions.json +15 -15
  187. package/lib/libsharpyuv.la +0 -41
  188. package/lib/libtiff.la +0 -41
  189. package/lib/libwebp.la +0 -41
  190. package/lib/libwebpdemux.la +0 -41
  191. package/lib/libwebpmux.la +0 -41
package/include/pngconf.h CHANGED
@@ -1,8 +1,8 @@
1
1
  /* pngconf.h - machine-configurable file for libpng
2
2
  *
3
- * libpng version 1.6.52
3
+ * libpng version 1.6.58
4
4
  *
5
- * Copyright (c) 2018-2025 Cosmin Truta
5
+ * Copyright (c) 2018-2026 Cosmin Truta
6
6
  * Copyright (c) 1998-2002,2004,2006-2016,2018 Glenn Randers-Pehrson
7
7
  * Copyright (c) 1996-1997 Andreas Dilger
8
8
  * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
@@ -1,8 +1,8 @@
1
1
  /* pnglibconf.h - library build configuration */
2
2
 
3
- /* libpng version 1.6.52 */
3
+ /* libpng version 1.6.58 */
4
4
 
5
- /* Copyright (c) 2018-2025 Cosmin Truta */
5
+ /* Copyright (c) 2018-2026 Cosmin Truta */
6
6
  /* Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson */
7
7
 
8
8
  /* This code is released under the libpng license. */
package/include/resvg.h CHANGED
@@ -14,9 +14,9 @@
14
14
  #include <stdint.h>
15
15
 
16
16
  #define RESVG_MAJOR_VERSION 0
17
- #define RESVG_MINOR_VERSION 45
18
- #define RESVG_PATCH_VERSION 1
19
- #define RESVG_VERSION "0.45.1"
17
+ #define RESVG_MINOR_VERSION 47
18
+ #define RESVG_PATCH_VERSION 0
19
+ #define RESVG_VERSION "0.47.0"
20
20
 
21
21
  /**
22
22
  * @brief List of possible errors.
@@ -1,4 +1,3 @@
1
- /* libtiff/tiffconf.h. Generated from tiffconf.h.in by configure. */
2
1
  /*
3
2
  Configuration defines for installed libtiff.
4
3
  This file maintained for backward compatibility. Do not use definitions
@@ -7,7 +6,7 @@
7
6
 
8
7
  /* clang-format off */
9
8
  /* clang-format disabled because CMake scripts are very sensitive to the
10
- * formatting of this file. configure_file variables of type "@VAR@" are
9
+ * formatting of this file. configure_file variables of type "" are
11
10
  * modified by clang-format and won't be substituted.
12
11
  */
13
12
 
@@ -21,28 +20,28 @@
21
20
 
22
21
 
23
22
  /* Signed 16-bit type */
24
- /* #undef TIFF_INT16_T */
23
+ #define TIFF_INT16_T int16_t
25
24
 
26
25
  /* Signed 32-bit type */
27
- /* #undef TIFF_INT32_T */
26
+ #define TIFF_INT32_T int32_t
28
27
 
29
28
  /* Signed 64-bit type */
30
- /* #undef TIFF_INT64_T */
29
+ #define TIFF_INT64_T int64_t
31
30
 
32
31
  /* Signed 8-bit type */
33
- /* #undef TIFF_INT8_T */
32
+ #define TIFF_INT8_T int8_t
34
33
 
35
34
  /* Unsigned 16-bit type */
36
- /* #undef TIFF_UINT16_T */
35
+ #define TIFF_UINT16_T uint16_t
37
36
 
38
37
  /* Unsigned 32-bit type */
39
- /* #undef TIFF_UINT32_T */
38
+ #define TIFF_UINT32_T uint32_t
40
39
 
41
40
  /* Unsigned 64-bit type */
42
- /* #undef TIFF_UINT64_T */
41
+ #define TIFF_UINT64_T uint64_t
43
42
 
44
43
  /* Unsigned 8-bit type */
45
- /* #undef TIFF_UINT8_T */
44
+ #define TIFF_UINT8_T uint8_t
46
45
 
47
46
  /* Signed size type */
48
47
  #define TIFF_SSIZE_T int32_t
package/include/tiffio.h CHANGED
@@ -125,13 +125,13 @@ typedef void *thandle_t; /* client data handle */
125
125
  */
126
126
 
127
127
  /* reference white */
128
- #define D65_X0 (95.0470F)
129
- #define D65_Y0 (100.0F)
130
- #define D65_Z0 (108.8827F)
128
+ #define D65_X0 (95.0470f)
129
+ #define D65_Y0 (100.0f)
130
+ #define D65_Z0 (108.8827f)
131
131
 
132
- #define D50_X0 (96.4250F)
133
- #define D50_Y0 (100.0F)
134
- #define D50_Z0 (82.4680F)
132
+ #define D50_X0 (96.4250f)
133
+ #define D50_Y0 (100.0f)
134
+ #define D50_Z0 (82.4680f)
135
135
 
136
136
  /* Structure for holding information about a display device. */
137
137
 
@@ -254,7 +254,7 @@ struct _TIFFRGBAImage
254
254
  * Macros for extracting components from the
255
255
  * packed ABGR form returned by TIFFReadRGBAImage.
256
256
  */
257
- #define TIFFGetR(abgr) ((abgr)&0xff)
257
+ #define TIFFGetR(abgr) ((abgr) & 0xff)
258
258
  #define TIFFGetG(abgr) (((abgr) >> 8) & 0xff)
259
259
  #define TIFFGetB(abgr) (((abgr) >> 16) & 0xff)
260
260
  #define TIFFGetA(abgr) (((abgr) >> 24) & 0xff)
@@ -269,7 +269,7 @@ struct _TIFFRGBAImage
269
269
  typedef int (*TIFFInitMethod)(TIFF *, int);
270
270
  typedef struct
271
271
  {
272
- char *name;
272
+ const char *name;
273
273
  uint16_t scheme;
274
274
  TIFFInitMethod init;
275
275
  } TIFFCodec;
@@ -584,6 +584,7 @@ extern int TIFFReadRGBAImageOriented(TIFF *, uint32_t, uint32_t, uint32_t *,
584
584
  tmsize_t cc);
585
585
  extern tmsize_t TIFFWriteRawTile(TIFF *tif, uint32_t tile, void *data,
586
586
  tmsize_t cc);
587
+ extern uint64_t TIFFGetMaxCompressionRatio(TIFF *tif);
587
588
  extern int TIFFDataWidth(
588
589
  TIFFDataType); /* table of tag datatype widths within TIFF file. */
589
590
  extern void TIFFSetWriteOffset(TIFF *tif, toff_t off);
@@ -659,7 +660,7 @@ extern int TIFFReadRGBAImageOriented(TIFF *, uint32_t, uint32_t, uint32_t *,
659
660
  unsigned short field_bit; /* bit in fieldsset bit vector */
660
661
  unsigned char field_oktochange; /* if true, can change while writing */
661
662
  unsigned char field_passcount; /* if true, pass dir count on set */
662
- char *field_name; /* ASCII name */
663
+ const char *field_name; /* ASCII name */
663
664
  } TIFFFieldInfo;
664
665
 
665
666
  extern int TIFFMergeFieldInfo(TIFF *, const TIFFFieldInfo[], uint32_t);
@@ -5,7 +5,7 @@
5
5
 
6
6
  /* clang-format disabled because FindTIFF.cmake is very sensitive to the
7
7
  * formatting of below line being a single line.
8
- * Furthermore, configure_file variables of type "@VAR@" are
8
+ * Furthermore, configure_file variables of type "" are
9
9
  * modified by clang-format and won't be substituted by CMake.
10
10
  */
11
11
  #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.7.1\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
@@ -1,17 +1,11 @@
1
1
  /*
2
2
  * Copyright 2024 The Android Open Source Project
3
3
  *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
4
+ * Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5
+ * https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6
+ * <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
7
+ * option. This file may not be copied, modified, or distributed
8
+ * except according to those terms.
15
9
  */
16
10
 
17
11
  /** \file ultrahdr_api.h
@@ -217,8 +217,8 @@ int vips_Oklab2Oklch(VipsImage *in, VipsImage **out, ...)
217
217
  G_GNUC_NULL_TERMINATED;
218
218
 
219
219
  VIPS_API
220
- int vips_uhdr2scRGB(VipsImage *in, VipsImage **out, ...);
221
- G_GNUC_NULL_TERMINATED
220
+ int vips_uhdr2scRGB(VipsImage *in, VipsImage **out, ...)
221
+ G_GNUC_NULL_TERMINATED;
222
222
 
223
223
  VIPS_API
224
224
  int vips_profile_load(const char *name, VipsBlob **profile, ...)
@@ -41,7 +41,7 @@ extern "C" {
41
41
  G_STMT_START \
42
42
  { \
43
43
  if (S) { \
44
- (void) F((S)); \
44
+ (void) (F((S))); \
45
45
  (S) = 0; \
46
46
  } \
47
47
  } \
@@ -4,16 +4,16 @@
4
4
  #ifndef VIPS_VERSION_H
5
5
  #define VIPS_VERSION_H
6
6
 
7
- #define VIPS_VERSION "8.18.0"
8
- #define VIPS_VERSION_STRING "8.18.0"
7
+ #define VIPS_VERSION "8.18.3"
8
+ #define VIPS_VERSION_STRING "8.18.3"
9
9
  #define VIPS_MAJOR_VERSION (8)
10
10
  #define VIPS_MINOR_VERSION (18)
11
- #define VIPS_MICRO_VERSION (0)
11
+ #define VIPS_MICRO_VERSION (3)
12
12
 
13
13
  /* The ABI version, as used for library versioning.
14
14
  */
15
15
  #define VIPS_LIBRARY_CURRENT (62)
16
- #define VIPS_LIBRARY_REVISION (0)
16
+ #define VIPS_LIBRARY_REVISION (3)
17
17
  #define VIPS_LIBRARY_AGE (20)
18
18
 
19
19
  #define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable C++ binding: true\nenable RAD load/save: true\nenable Analyze7 load: true\nenable PPM load/save: true\nenable GIF load: true\nFFTs with fftw: false\nSIMD support with libhwy: true\nICC profile support with lcms2: true\ndeflate compression with zlib: true\ntext rendering with pangocairo: false\nfont file support with fontconfig: false\nEXIF metadata support with libexif: true\nJPEG load/save with libjpeg: true\nUHDR load/save with libuhdr: true\nJXL load/save with libjxl: false (dynamic module: false)\nJPEG2000 load/save with OpenJPEG: false\nPNG load/save with libpng: true\nimage quantisation with imagequant: true\nTIFF load/save with libtiff-4: true\nimage pyramid save with libarchive: false\nHEIC/AVIF load/save with libheif: true (dynamic module: false)\nWebP load/save with libwebp: true\nPDF load with PDFium or Poppler: false (dynamic module: false)\nSVG load with librsvg or resvg: true (dynamic module: false)\nEXR load with OpenEXR: false\nWSI load with OpenSlide: false (dynamic module: false)\nMatlab load with Matio: false\nNIfTI load/save with libnifti: false\nFITS load/save with cfitsio: false\nGIF save with cgif: true\nRAW load with libraw: false\nMagick load/save with MagickCore: false (dynamic module: false)"
package/include/zlib.h CHANGED
@@ -49,11 +49,11 @@
49
49
  extern "C" {
50
50
  #endif
51
51
 
52
- #define ZLIBNG_VERSION "2.3.2"
53
- #define ZLIBNG_VERNUM 0x020302F0L /* MMNNRRSM: major minor revision status modified */
52
+ #define ZLIBNG_VERSION "2.3.3"
53
+ #define ZLIBNG_VERNUM 0x020303F0L /* MMNNRRSM: major minor revision status modified */
54
54
  #define ZLIBNG_VER_MAJOR 2
55
55
  #define ZLIBNG_VER_MINOR 3
56
- #define ZLIBNG_VER_REVISION 2
56
+ #define ZLIBNG_VER_REVISION 3
57
57
  #define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
58
58
  #define ZLIBNG_VER_STATUSH 0xF /* Hex values: 0=devel, 1-9=beta, A-E=Release Candidate, F=Release */
59
59
  #define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */
@@ -17,8 +17,6 @@
17
17
  #define GIO_STATIC_COMPILATION 1
18
18
  #define GMODULE_STATIC_COMPILATION 1
19
19
  #define GI_STATIC_COMPILATION 1
20
- #define G_INTL_STATIC_COMPILATION 1
21
- #define FFI_STATIC_BUILD 1
22
20
 
23
21
  /* Specifies that GLib's g_print*() functions wrap the
24
22
  * system printf functions. This is useful to know, for example,
@@ -114,7 +112,7 @@ typedef unsigned int guintptr;
114
112
  #define G_GUINTPTR_FORMAT "u"
115
113
 
116
114
  #define GLIB_MAJOR_VERSION 2
117
- #define GLIB_MINOR_VERSION 87
115
+ #define GLIB_MINOR_VERSION 89
118
116
  #define GLIB_MICRO_VERSION 0
119
117
 
120
118
  #define G_OS_UNIX
package/lib/libaom.a CHANGED
Binary file
package/lib/libcgif.a CHANGED
Binary file
package/lib/libexif.a CHANGED
Binary file
package/lib/libexif.la CHANGED
@@ -1,5 +1,5 @@
1
1
  # libexif.la - a libtool library file
2
- # Generated by libtool (GNU libtool) 2.4.7
2
+ # Generated by libtool (GNU libtool) 2.5.4
3
3
  #
4
4
  # Please DO NOT delete this file!
5
5
  # It is necessary for linking the library.
package/lib/libexpat.a CHANGED
Binary file
package/lib/libexpat.la CHANGED
@@ -23,8 +23,8 @@ dependency_libs=' -lm -L/src/build/target/lib'
23
23
  weak_library_names=''
24
24
 
25
25
  # Version information for libexpat.
26
- current=12
27
- age=11
26
+ current=13
27
+ age=12
28
28
  revision=1
29
29
 
30
30
  # Is this an already installed library?
package/lib/libffi.a CHANGED
Binary file
package/lib/libgio-2.0.a CHANGED
Binary file
package/lib/libglib-2.0.a CHANGED
Binary file
Binary file
Binary file
Binary file
package/lib/libheif.a CHANGED
Binary file
package/lib/libhwy.a CHANGED
Binary file
Binary file
package/lib/libjpeg.a CHANGED
Binary file
package/lib/liblcms2.a CHANGED
Binary file
package/lib/libpng.a CHANGED
Binary file
package/lib/libpng.la CHANGED
@@ -23,8 +23,8 @@ dependency_libs=' -L/src/build/target/lib -lz'
23
23
  weak_library_names=''
24
24
 
25
25
  # Version information for libpng16.
26
- current=68
27
- age=52
26
+ current=74
27
+ age=58
28
28
  revision=0
29
29
 
30
30
  # Is this an already installed library?
package/lib/libpng16.a CHANGED
Binary file
package/lib/libpng16.la CHANGED
@@ -23,8 +23,8 @@ dependency_libs=' -L/src/build/target/lib -lz'
23
23
  weak_library_names=''
24
24
 
25
25
  # Version information for libpng16.
26
- current=68
27
- age=52
26
+ current=74
27
+ age=58
28
28
  revision=0
29
29
 
30
30
  # Is this an already installed library?
package/lib/libresvg.a CHANGED
Binary file
package/lib/libsharpyuv.a CHANGED
Binary file
package/lib/libtiff.a CHANGED
Binary file
package/lib/libuhdr.a CHANGED
Binary file
package/lib/libvips-cpp.a CHANGED
Binary file
package/lib/libvips.a CHANGED
Binary file
package/lib/libwebp.a CHANGED
Binary file
Binary file
Binary file
package/lib/libwebpmux.a CHANGED
Binary file
package/lib/libz.a CHANGED
Binary file
@@ -5,8 +5,8 @@ includedir=${prefix}/include
5
5
  libdir=${exec_prefix}/lib
6
6
 
7
7
  Name: aom
8
- Description: Alliance for Open Media AV1 codec library v3.13.1.
9
- Version: 3.13.1
8
+ Description: Alliance for Open Media AV1 codec library v3.14.1.
9
+ Version: 3.14.1
10
10
  Requires:
11
11
  Conflicts:
12
12
  Libs: -L${libdir} -laom
@@ -4,6 +4,6 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: cgif
6
6
  Description: A fast and lightweight GIF encoder
7
- Version: 0.5.0
7
+ Version: 0.5.3
8
8
  Libs: -L${libdir} -lcgif
9
9
  Cflags: -I${includedir}
@@ -4,7 +4,7 @@ libdir=${exec_prefix}/lib
4
4
  includedir=${prefix}/include
5
5
 
6
6
  Name: expat
7
- Version: 2.7.3
7
+ Version: 2.8.1
8
8
  Description: expat XML parser
9
9
  URL: https://libexpat.github.io/
10
10
  Libs: -L${libdir} -lexpat
@@ -18,7 +18,7 @@ gsettings=${bindir}/gsettings
18
18
 
19
19
  Name: GIO
20
20
  Description: glib I/O library
21
- Version: 2.87.0
21
+ Version: 2.89.0
22
22
  Requires: glib-2.0, gobject-2.0, gmodule-no-export-2.0, zlib
23
23
  Libs: -L${libdir} -lgio-2.0
24
24
  Cflags: -I${includedir}
@@ -11,6 +11,6 @@ glib_valgrind_suppressions=${datadir}/glib-2.0/valgrind/glib.supp
11
11
 
12
12
  Name: GLib
13
13
  Description: C Utility Library
14
- Version: 2.87.0
14
+ Version: 2.89.0
15
15
  Libs: -L${libdir} -lglib-2.0 -lm -pthread
16
16
  Cflags: -I${includedir}/glib-2.0 -pthread -I${libdir}/glib-2.0/include
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.87.0
9
+ Version: 2.89.0
10
10
  Requires: gmodule-no-export-2.0, glib-2.0
11
11
  Libs: -Wl,--export-dynamic
12
12
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.87.0
9
+ Version: 2.89.0
10
10
  Requires: gmodule-no-export-2.0, glib-2.0
11
11
  Libs: -Wl,--export-dynamic
12
12
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.87.0
9
+ Version: 2.89.0
10
10
  Requires: glib-2.0
11
11
  Libs: -L${libdir} -lgmodule-2.0 -pthread
12
12
  Cflags: -I${includedir} -pthread
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: GObject
6
6
  Description: GLib Type, Object, Parameter and Signal Library
7
- Version: 2.87.0
7
+ Version: 2.89.0
8
8
  Requires: glib-2.0, libffi >= 3.0.0
9
9
  Libs: -L${libdir} -lgobject-2.0
10
10
  Cflags: -I${includedir}
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: GThread
6
6
  Description: Thread support for GLib
7
- Version: 2.87.0
7
+ Version: 2.89.0
8
8
  Requires: glib-2.0
9
9
  Libs: -L${libdir} -lgthread-2.0 -pthread
10
10
  Cflags: -I${includedir} -pthread
@@ -4,6 +4,6 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: lcms2
6
6
  Description: LCMS Color Management Library
7
- Version: 2.17
7
+ Version: 2.19
8
8
  Libs: -L${libdir} -llcms2 -lm -pthread
9
9
  Cflags: -I${includedir} -pthread
@@ -8,7 +8,7 @@ includedir=${prefix}/include
8
8
  Name: libexif
9
9
  Description: Library for easy access to EXIF data
10
10
  Requires:
11
- Version: 0.6.25
11
+ Version: 0.6.26
12
12
  Libs: -L${libdir} -lexif
13
13
  Libs.private: -lm
14
14
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ includedir=${prefix}/include
6
6
  Name: libheif
7
7
  Description: HEIF image codec.
8
8
  URL: https://github.com/strukturag/libheif
9
- Version: 1.20.2
9
+ Version: 1.23.0
10
10
  Requires:
11
11
  Requires.private: aom libsharpyuv
12
12
  Libs: -L${libdir} -lheif
@@ -1,10 +1,9 @@
1
1
  prefix=/src/build/target
2
- exec_prefix=${prefix}
3
- libdir=${exec_prefix}/lib
4
2
  includedir=${prefix}/include
3
+ libdir=${prefix}/lib
5
4
 
6
5
  Name: libhwy
7
6
  Description: Efficient and performance-portable SIMD wrapper
8
- Version: 1.3.0
7
+ Version: 1.4.0
9
8
  Libs: -L${libdir} -lhwy
10
- Cflags: -I${includedir} -DHWY_STATIC_DEFINE
9
+ Cflags: -I${includedir}
@@ -5,7 +5,7 @@ includedir=${prefix}/include/libpng16
5
5
 
6
6
  Name: libpng
7
7
  Description: Loads and saves PNG files
8
- Version: 1.6.52
8
+ Version: 1.6.58
9
9
  Requires.private: zlib
10
10
  Libs: -L${libdir} -lpng16
11
11
  Libs.private: -lz
@@ -5,7 +5,7 @@ includedir=${prefix}/include/libpng16
5
5
 
6
6
  Name: libpng
7
7
  Description: Loads and saves PNG files
8
- Version: 1.6.52
8
+ Version: 1.6.58
9
9
  Requires.private: zlib
10
10
  Libs: -L${libdir} -lpng16
11
11
  Libs.private: -lz
@@ -8,4 +8,4 @@ Description: Library for sharp RGB to YUV conversion
8
8
  Version: 1.6.0
9
9
  Cflags: -I${includedir}
10
10
  Libs: -L${libdir} -lsharpyuv
11
- Libs.private: -lm
11
+ Libs.private:
@@ -7,6 +7,6 @@ Name: libtiff
7
7
  Description: Tag Image File Format (TIFF) library.
8
8
  Version: 4.7.1
9
9
  Libs: -L${libdir} -ltiff
10
- Libs.private: -lwebp -ljpeg -lz -lm
10
+ Libs.private:
11
11
  Cflags: -I${includedir}
12
- Requires.private: libwebp libjpeg zlib
12
+ Requires.private: zlib libjpeg libwebp
@@ -9,4 +9,4 @@ Version: 1.6.0
9
9
  Requires.private: libsharpyuv
10
10
  Cflags: -I${includedir}
11
11
  Libs: -L${libdir} -lwebp
12
- Libs.private: -lm
12
+ Libs.private:
@@ -0,0 +1,11 @@
1
+ prefix=/src/build/target
2
+ exec_prefix=${prefix}
3
+ libdir=${exec_prefix}/lib
4
+ includedir=${prefix}/include
5
+
6
+ Name: libwebpdecoder
7
+ Description: Library for the WebP graphics format (decode only)
8
+ Version: 1.6.0
9
+ Cflags: -I${includedir}
10
+ Libs: -L${libdir} -lwebpdecoder
11
+ Libs.private:
@@ -9,4 +9,4 @@ Version: 1.6.0
9
9
  Requires.private: libwebp >= 0.2.0
10
10
  Cflags: -I${includedir}
11
11
  Libs: -L${libdir} -lwebpmux
12
- Libs.private: -lm
12
+ Libs.private:
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: vips-cpp
6
6
  Description: C++ API for vips8 image processing library
7
- Version: 8.18.0
7
+ Version: 8.18.3
8
8
  Requires: vips, glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, libuhdr, libpng >= 1.2.9, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
9
9
  Libs: -L${libdir} -lvips-cpp -lresvg -pthread -lm
10
10
  Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: vips
6
6
  Description: Image processing library
7
- Version: 8.18.0
7
+ Version: 8.18.3
8
8
  Requires: glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, libuhdr, libpng >= 1.2.9, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
9
9
  Libs: -L${libdir} -lvips -lresvg -pthread -lm
10
10
  Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@img/sharp-libvips-dev-wasm32",
3
- "version": "1.3.0-rc.1",
3
+ "version": "1.3.0-rc.10",
4
4
  "description": "Header files and static wasm32 libraries for libvips and dependencies to build sharp as wasm32",
5
5
  "author": "Lovell Fuller <npm@lovell.info>",
6
6
  "homepage": "https://sharp.pixelplumbing.com",