@img/sharp-libvips-dev 1.1.0-rc4 → 1.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.
- package/include/archive.h +3 -3
- package/include/archive_entry.h +3 -2
- package/include/expat.h +3 -3
- package/include/expat_config.h +3 -3
- package/include/fontconfig/fcfreetype.h +5 -5
- package/include/fontconfig/fcprivate.h +86 -92
- package/include/fontconfig/fontconfig.h +327 -320
- package/include/glib-2.0/gio/gdbusnameowning.h +12 -10
- package/include/glib-2.0/gio/gsettings.h +35 -31
- package/include/glib-2.0/gobject/gsignal.h +33 -8
- package/include/harfbuzz/hb-buffer.h +62 -3
- package/include/harfbuzz/hb-common.h +11 -0
- package/include/harfbuzz/hb-draw.h +10 -2
- package/include/harfbuzz/hb-face.h +14 -0
- package/include/harfbuzz/hb-font.h +6 -0
- package/include/harfbuzz/hb-ft.h +4 -0
- package/include/harfbuzz/hb-paint.h +8 -0
- package/include/harfbuzz/hb-version.h +3 -3
- package/include/librsvg-2.0/librsvg/rsvg-version.h +3 -3
- package/include/libxml2/libxml/HTMLparser.h +33 -30
- package/include/libxml2/libxml/HTMLtree.h +1 -0
- package/include/libxml2/libxml/SAX.h +2 -186
- package/include/libxml2/libxml/SAX2.h +2 -3
- package/include/libxml2/libxml/catalog.h +1 -0
- package/include/libxml2/libxml/debugXML.h +0 -138
- package/include/libxml2/libxml/encoding.h +124 -61
- package/include/libxml2/libxml/entities.h +0 -19
- package/include/libxml2/libxml/globals.h +0 -16
- package/include/libxml2/libxml/nanoftp.h +3 -173
- package/include/libxml2/libxml/parser.h +472 -231
- package/include/libxml2/libxml/parserInternals.h +21 -101
- package/include/libxml2/libxml/relaxng.h +7 -2
- package/include/libxml2/libxml/threads.h +0 -6
- package/include/libxml2/libxml/tree.h +29 -85
- package/include/libxml2/libxml/valid.h +20 -12
- package/include/libxml2/libxml/xinclude.h +5 -0
- package/include/libxml2/libxml/xlink.h +4 -0
- package/include/libxml2/libxml/xmlIO.h +13 -32
- package/include/libxml2/libxml/xmlautomata.h +19 -2
- package/include/libxml2/libxml/xmlerror.h +17 -18
- package/include/libxml2/libxml/xmlexports.h +6 -56
- package/include/libxml2/libxml/xmlmemory.h +19 -19
- package/include/libxml2/libxml/xmlmodule.h +4 -0
- package/include/libxml2/libxml/xmlreader.h +11 -3
- package/include/libxml2/libxml/xmlregexp.h +7 -106
- package/include/libxml2/libxml/xmlsave.h +11 -2
- package/include/libxml2/libxml/xmlschemas.h +10 -5
- package/include/libxml2/libxml/xmlunicode.h +3 -354
- package/include/libxml2/libxml/xmlversion.h +18 -33
- package/include/libxml2/libxml/xpath.h +5 -15
- package/include/libxml2/libxml/xpathInternals.h +9 -3
- package/include/libxml2/libxml/xpointer.h +1 -91
- package/include/pango-1.0/pango/pango-features.h +2 -2
- package/include/pango-1.0/pango/pango-font.h +1 -1
- package/package.json +1 -1
- package/versions.json +8 -8
package/include/archive.h
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
* assert that ARCHIVE_VERSION_NUMBER >= 2012108.
|
|
35
35
|
*/
|
|
36
36
|
/* Note: Compiler will complain if this does not match archive_entry.h! */
|
|
37
|
-
#define ARCHIVE_VERSION_NUMBER
|
|
37
|
+
#define ARCHIVE_VERSION_NUMBER 3007009
|
|
38
38
|
|
|
39
39
|
#include <sys/stat.h>
|
|
40
40
|
#include <stddef.h> /* for wchar_t */
|
|
@@ -132,7 +132,7 @@ typedef ssize_t la_ssize_t;
|
|
|
132
132
|
#define __LA_PRINTF(fmtarg, firstvararg) /* nothing */
|
|
133
133
|
#endif
|
|
134
134
|
|
|
135
|
-
#if defined(__GNUC__) && __GNUC__
|
|
135
|
+
#if defined(__GNUC__) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
|
|
136
136
|
# define __LA_DEPRECATED __attribute__((deprecated))
|
|
137
137
|
#else
|
|
138
138
|
# define __LA_DEPRECATED
|
|
@@ -155,7 +155,7 @@ __LA_DECL int archive_version_number(void);
|
|
|
155
155
|
/*
|
|
156
156
|
* Textual name/version of the library, useful for version displays.
|
|
157
157
|
*/
|
|
158
|
-
#define ARCHIVE_VERSION_ONLY_STRING "3.7.
|
|
158
|
+
#define ARCHIVE_VERSION_ONLY_STRING "3.7.9"
|
|
159
159
|
#define ARCHIVE_VERSION_STRING "libarchive " ARCHIVE_VERSION_ONLY_STRING
|
|
160
160
|
__LA_DECL const char * archive_version_string(void);
|
|
161
161
|
|
package/include/archive_entry.h
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
#define ARCHIVE_ENTRY_H_INCLUDED
|
|
29
29
|
|
|
30
30
|
/* Note: Compiler will complain if this does not match archive.h! */
|
|
31
|
-
#define ARCHIVE_VERSION_NUMBER
|
|
31
|
+
#define ARCHIVE_VERSION_NUMBER 3007009
|
|
32
32
|
|
|
33
33
|
/*
|
|
34
34
|
* Note: archive_entry.h is for use outside of libarchive; the
|
|
@@ -127,7 +127,8 @@ typedef ssize_t la_ssize_t;
|
|
|
127
127
|
# define __LA_DECL
|
|
128
128
|
#endif
|
|
129
129
|
|
|
130
|
-
#if defined(__GNUC__) && __GNUC__
|
|
130
|
+
#if defined(__GNUC__) && (__GNUC__ > 3 || \
|
|
131
|
+
(__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
|
|
131
132
|
# define __LA_DEPRECATED __attribute__((deprecated))
|
|
132
133
|
#else
|
|
133
134
|
# define __LA_DEPRECATED
|
package/include/expat.h
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
Copyright (c) 2000-2005 Fred L. Drake, Jr. <fdrake@users.sourceforge.net>
|
|
12
12
|
Copyright (c) 2001-2002 Greg Stein <gstein@users.sourceforge.net>
|
|
13
13
|
Copyright (c) 2002-2016 Karl Waclawek <karl@waclawek.net>
|
|
14
|
-
Copyright (c) 2016-
|
|
14
|
+
Copyright (c) 2016-2025 Sebastian Pipping <sebastian@pipping.org>
|
|
15
15
|
Copyright (c) 2016 Cristian Rodríguez <crrodriguez@opensuse.org>
|
|
16
16
|
Copyright (c) 2016 Thomas Beutlich <tc@tbeu.de>
|
|
17
17
|
Copyright (c) 2017 Rhodri James <rhodri@wildebeest.org.uk>
|
|
@@ -1067,8 +1067,8 @@ XML_SetReparseDeferralEnabled(XML_Parser parser, XML_Bool enabled);
|
|
|
1067
1067
|
See https://semver.org
|
|
1068
1068
|
*/
|
|
1069
1069
|
#define XML_MAJOR_VERSION 2
|
|
1070
|
-
#define XML_MINOR_VERSION
|
|
1071
|
-
#define XML_MICRO_VERSION
|
|
1070
|
+
#define XML_MINOR_VERSION 7
|
|
1071
|
+
#define XML_MICRO_VERSION 1
|
|
1072
1072
|
|
|
1073
1073
|
#ifdef __cplusplus
|
|
1074
1074
|
}
|
package/include/expat_config.h
CHANGED
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
#define PACKAGE_NAME "expat"
|
|
84
84
|
|
|
85
85
|
/* Define to the full name and version of this package. */
|
|
86
|
-
#define PACKAGE_STRING "expat 2.
|
|
86
|
+
#define PACKAGE_STRING "expat 2.7.1"
|
|
87
87
|
|
|
88
88
|
/* Define to the one symbol short name of this package. */
|
|
89
89
|
#define PACKAGE_TARNAME "expat"
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
#define PACKAGE_URL ""
|
|
93
93
|
|
|
94
94
|
/* Define to the version of this package. */
|
|
95
|
-
#define PACKAGE_VERSION "2.
|
|
95
|
+
#define PACKAGE_VERSION "2.7.1"
|
|
96
96
|
|
|
97
97
|
/* Define to 1 if all of the C90 standard headers exist (not just the ones
|
|
98
98
|
required in a freestanding environment). This macro is provided for
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
#define STDC_HEADERS 1
|
|
101
101
|
|
|
102
102
|
/* Version number of package */
|
|
103
|
-
#define VERSION "2.
|
|
103
|
+
#define VERSION "2.7.1"
|
|
104
104
|
|
|
105
105
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
|
106
106
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
#include FT_FREETYPE_H
|
|
29
29
|
|
|
30
30
|
#ifndef FcPublic
|
|
31
|
-
#define FcPublic
|
|
31
|
+
# define FcPublic
|
|
32
32
|
#endif
|
|
33
33
|
|
|
34
34
|
_FCFUNCPROTOBEGIN
|
|
@@ -38,7 +38,7 @@ FcFreeTypeCharIndex (FT_Face face, FcChar32 ucs4);
|
|
|
38
38
|
|
|
39
39
|
FcPublic FcCharSet *
|
|
40
40
|
FcFreeTypeCharSetAndSpacing (FT_Face face, FcBlanks *blanks, int *spacing);
|
|
41
|
-
|
|
41
|
+
|
|
42
42
|
FcPublic FcCharSet *
|
|
43
43
|
FcFreeTypeCharSet (FT_Face face, FcBlanks *blanks);
|
|
44
44
|
|
|
@@ -50,9 +50,9 @@ FcPatternAddFTFace (FcPattern *p, const char *object, const FT_Face f);
|
|
|
50
50
|
|
|
51
51
|
FcPublic FcPattern *
|
|
52
52
|
FcFreeTypeQueryFace (const FT_Face face,
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
53
|
+
const FcChar8 *file,
|
|
54
|
+
unsigned int id,
|
|
55
|
+
FcBlanks *blanks);
|
|
56
56
|
|
|
57
57
|
_FCFUNCPROTOEND
|
|
58
58
|
|
|
@@ -31,104 +31,98 @@
|
|
|
31
31
|
* into macros (sigh).
|
|
32
32
|
*/
|
|
33
33
|
|
|
34
|
-
#define FcPatternVapBuild(result, orig, va)
|
|
35
|
-
{
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
_FcPatternVapBuild_return: \
|
|
97
|
-
; \
|
|
98
|
-
}
|
|
34
|
+
#define FcPatternVapBuild(result, orig, va) \
|
|
35
|
+
{ \
|
|
36
|
+
FcPattern *__p__ = (orig); \
|
|
37
|
+
const char *__o__; \
|
|
38
|
+
FcValue __v__; \
|
|
39
|
+
\
|
|
40
|
+
if (!__p__) { \
|
|
41
|
+
__p__ = FcPatternCreate(); \
|
|
42
|
+
if (!__p__) \
|
|
43
|
+
goto _FcPatternVapBuild_bail0; \
|
|
44
|
+
} \
|
|
45
|
+
for (;;) { \
|
|
46
|
+
__o__ = va_arg (va, const char *); \
|
|
47
|
+
if (!__o__) \
|
|
48
|
+
break; \
|
|
49
|
+
__v__.type = va_arg (va, int); \
|
|
50
|
+
switch (__v__.type) { \
|
|
51
|
+
case FcTypeUnknown: \
|
|
52
|
+
case FcTypeVoid: \
|
|
53
|
+
goto _FcPatternVapBuild_bail1; \
|
|
54
|
+
case FcTypeInteger: \
|
|
55
|
+
__v__.u.i = va_arg (va, int); \
|
|
56
|
+
break; \
|
|
57
|
+
case FcTypeDouble: \
|
|
58
|
+
__v__.u.d = va_arg (va, double); \
|
|
59
|
+
break; \
|
|
60
|
+
case FcTypeString: \
|
|
61
|
+
__v__.u.s = va_arg (va, const FcChar8 *); \
|
|
62
|
+
break; \
|
|
63
|
+
case FcTypeBool: \
|
|
64
|
+
__v__.u.b = va_arg (va, FcBool); \
|
|
65
|
+
break; \
|
|
66
|
+
case FcTypeMatrix: \
|
|
67
|
+
__v__.u.m = va_arg (va, const FcMatrix *); \
|
|
68
|
+
break; \
|
|
69
|
+
case FcTypeCharSet: \
|
|
70
|
+
__v__.u.c = va_arg (va, const FcCharSet *); \
|
|
71
|
+
break; \
|
|
72
|
+
case FcTypeFTFace: \
|
|
73
|
+
__v__.u.f = va_arg (va, FT_Face); \
|
|
74
|
+
break; \
|
|
75
|
+
case FcTypeLangSet: \
|
|
76
|
+
__v__.u.l = va_arg (va, const FcLangSet *); \
|
|
77
|
+
break; \
|
|
78
|
+
case FcTypeRange: \
|
|
79
|
+
__v__.u.r = va_arg (va, const FcRange *); \
|
|
80
|
+
break; \
|
|
81
|
+
} \
|
|
82
|
+
if (!FcPatternAdd (__p__, __o__, __v__, FcTrue)) \
|
|
83
|
+
goto _FcPatternVapBuild_bail1; \
|
|
84
|
+
} \
|
|
85
|
+
result = __p__; \
|
|
86
|
+
goto _FcPatternVapBuild_return; \
|
|
87
|
+
\
|
|
88
|
+
_FcPatternVapBuild_bail1: \
|
|
89
|
+
if (!orig) \
|
|
90
|
+
FcPatternDestroy (__p__); \
|
|
91
|
+
_FcPatternVapBuild_bail0: \
|
|
92
|
+
result = (void *)0; \
|
|
93
|
+
\
|
|
94
|
+
_FcPatternVapBuild_return:; \
|
|
95
|
+
}
|
|
99
96
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
_FcObjectSetVapBuild_bail0: \
|
|
123
|
-
; \
|
|
124
|
-
}
|
|
97
|
+
#define FcObjectSetVapBuild(__ret__, __first__, __va__) \
|
|
98
|
+
{ \
|
|
99
|
+
FcObjectSet *__os__; \
|
|
100
|
+
const char *__ob__; \
|
|
101
|
+
\
|
|
102
|
+
__ret__ = 0; \
|
|
103
|
+
__os__ = FcObjectSetCreate(); \
|
|
104
|
+
if (!__os__) \
|
|
105
|
+
goto _FcObjectSetVapBuild_bail0; \
|
|
106
|
+
__ob__ = __first__; \
|
|
107
|
+
while (__ob__) { \
|
|
108
|
+
if (!FcObjectSetAdd (__os__, __ob__)) \
|
|
109
|
+
goto _FcObjectSetVapBuild_bail1; \
|
|
110
|
+
__ob__ = va_arg (__va__, const char *); \
|
|
111
|
+
} \
|
|
112
|
+
__ret__ = __os__; \
|
|
113
|
+
\
|
|
114
|
+
_FcObjectSetVapBuild_bail1: \
|
|
115
|
+
if (!__ret__ && __os__) \
|
|
116
|
+
FcObjectSetDestroy (__os__); \
|
|
117
|
+
_FcObjectSetVapBuild_bail0:; \
|
|
118
|
+
}
|
|
125
119
|
|
|
126
120
|
#ifndef FC_ATTRIBUTE_VISIBILITY_HIDDEN
|
|
127
|
-
#define FC_ATTRIBUTE_VISIBILITY_HIDDEN __attribute((visibility("hidden")))
|
|
121
|
+
# define FC_ATTRIBUTE_VISIBILITY_HIDDEN __attribute ((visibility ("hidden")))
|
|
128
122
|
#endif
|
|
129
123
|
|
|
130
124
|
#ifndef FC_ATTRIBUTE_VISIBILITY_EXPORT
|
|
131
|
-
#define FC_ATTRIBUTE_VISIBILITY_EXPORT __attribute((visibility("default")))
|
|
125
|
+
# define FC_ATTRIBUTE_VISIBILITY_EXPORT __attribute ((visibility ("default")))
|
|
132
126
|
#endif
|
|
133
127
|
|
|
134
128
|
#endif /* _FCPRIVATE_H_ */
|