jassub 1.7.11 → 1.7.13

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 (171) hide show
  1. package/LICENSE +22 -22
  2. package/README.md +251 -251
  3. package/dist/COPYRIGHT +951 -951
  4. package/dist/jassub-worker-modern.wasm +0 -0
  5. package/dist/jassub-worker.js +11 -11
  6. package/dist/jassub-worker.wasm +0 -0
  7. package/dist/jassub-worker.wasm.js +1 -1
  8. package/dist/jassub.es.js +1 -1
  9. package/dist/jassub.umd.js +1 -1
  10. package/dist/js/jassub-worker-modern.js +119 -1
  11. package/dist/js/jassub-worker-modern.wasm +0 -0
  12. package/dist/js/jassub-worker.js +122 -4
  13. package/dist/js/jassub-worker.wasm +0 -0
  14. package/dist/js/jassub-worker.wasm.js +26 -25
  15. package/dist/js/jassub.js +832 -832
  16. package/dist/libraries/bin/brotli.js +1 -0
  17. package/dist/libraries/include/ass/ass.h +812 -0
  18. package/dist/libraries/include/ass/ass_types.h +292 -0
  19. package/dist/libraries/include/brotli/decode.h +344 -0
  20. package/dist/libraries/include/brotli/encode.h +448 -0
  21. package/dist/libraries/include/brotli/port.h +288 -0
  22. package/dist/libraries/include/brotli/types.h +83 -0
  23. package/dist/libraries/include/expat.h +1064 -0
  24. package/dist/libraries/include/expat_config.h +115 -0
  25. package/dist/libraries/include/expat_external.h +165 -0
  26. package/dist/libraries/include/fontconfig/fcfreetype.h +59 -0
  27. package/dist/libraries/include/fontconfig/fcprivate.h +134 -0
  28. package/dist/libraries/include/fontconfig/fontconfig.h +1154 -0
  29. package/dist/libraries/include/freetype2/freetype/config/ftconfig.h +63 -0
  30. package/dist/libraries/include/freetype2/freetype/config/ftheader.h +824 -0
  31. package/dist/libraries/include/freetype2/freetype/config/ftmodule.h +20 -0
  32. package/dist/libraries/include/freetype2/freetype/config/ftoption.h +1011 -0
  33. package/dist/libraries/include/freetype2/freetype/config/ftstdlib.h +175 -0
  34. package/dist/libraries/include/freetype2/freetype/config/integer-types.h +245 -0
  35. package/dist/libraries/include/freetype2/freetype/config/mac-support.h +49 -0
  36. package/dist/libraries/include/freetype2/freetype/config/public-macros.h +120 -0
  37. package/dist/libraries/include/freetype2/freetype/freetype.h +4833 -0
  38. package/dist/libraries/include/freetype2/freetype/ftadvanc.h +188 -0
  39. package/dist/libraries/include/freetype2/freetype/ftbbox.h +101 -0
  40. package/dist/libraries/include/freetype2/freetype/ftbdf.h +212 -0
  41. package/dist/libraries/include/freetype2/freetype/ftbitmap.h +329 -0
  42. package/dist/libraries/include/freetype2/freetype/ftbzip2.h +102 -0
  43. package/dist/libraries/include/freetype2/freetype/ftcache.h +1087 -0
  44. package/dist/libraries/include/freetype2/freetype/ftchapters.h +147 -0
  45. package/dist/libraries/include/freetype2/freetype/ftcid.h +167 -0
  46. package/dist/libraries/include/freetype2/freetype/ftcolor.h +1609 -0
  47. package/dist/libraries/include/freetype2/freetype/ftdriver.h +1193 -0
  48. package/dist/libraries/include/freetype2/freetype/fterrdef.h +279 -0
  49. package/dist/libraries/include/freetype2/freetype/fterrors.h +296 -0
  50. package/dist/libraries/include/freetype2/freetype/ftfntfmt.h +93 -0
  51. package/dist/libraries/include/freetype2/freetype/ftgasp.h +143 -0
  52. package/dist/libraries/include/freetype2/freetype/ftglyph.h +664 -0
  53. package/dist/libraries/include/freetype2/freetype/ftgxval.h +354 -0
  54. package/dist/libraries/include/freetype2/freetype/ftgzip.h +151 -0
  55. package/dist/libraries/include/freetype2/freetype/ftimage.h +1276 -0
  56. package/dist/libraries/include/freetype2/freetype/ftincrem.h +348 -0
  57. package/dist/libraries/include/freetype2/freetype/ftlcdfil.h +323 -0
  58. package/dist/libraries/include/freetype2/freetype/ftlist.h +296 -0
  59. package/dist/libraries/include/freetype2/freetype/ftlogging.h +184 -0
  60. package/dist/libraries/include/freetype2/freetype/ftlzw.h +100 -0
  61. package/dist/libraries/include/freetype2/freetype/ftmac.h +289 -0
  62. package/dist/libraries/include/freetype2/freetype/ftmm.h +752 -0
  63. package/dist/libraries/include/freetype2/freetype/ftmodapi.h +806 -0
  64. package/dist/libraries/include/freetype2/freetype/ftmoderr.h +204 -0
  65. package/dist/libraries/include/freetype2/freetype/ftotval.h +206 -0
  66. package/dist/libraries/include/freetype2/freetype/ftoutln.h +586 -0
  67. package/dist/libraries/include/freetype2/freetype/ftparams.h +203 -0
  68. package/dist/libraries/include/freetype2/freetype/ftpfr.h +179 -0
  69. package/dist/libraries/include/freetype2/freetype/ftrender.h +244 -0
  70. package/dist/libraries/include/freetype2/freetype/ftsizes.h +159 -0
  71. package/dist/libraries/include/freetype2/freetype/ftsnames.h +272 -0
  72. package/dist/libraries/include/freetype2/freetype/ftstroke.h +773 -0
  73. package/dist/libraries/include/freetype2/freetype/ftsynth.h +83 -0
  74. package/dist/libraries/include/freetype2/freetype/ftsystem.h +352 -0
  75. package/dist/libraries/include/freetype2/freetype/fttrigon.h +350 -0
  76. package/dist/libraries/include/freetype2/freetype/fttypes.h +615 -0
  77. package/dist/libraries/include/freetype2/freetype/ftwinfnt.h +276 -0
  78. package/dist/libraries/include/freetype2/freetype/t1tables.h +773 -0
  79. package/dist/libraries/include/freetype2/freetype/ttnameid.h +1235 -0
  80. package/dist/libraries/include/freetype2/freetype/tttables.h +855 -0
  81. package/dist/libraries/include/freetype2/freetype/tttags.h +123 -0
  82. package/dist/libraries/include/freetype2/ft2build.h +42 -0
  83. package/dist/libraries/include/fribidi/fribidi-arabic.h +81 -0
  84. package/dist/libraries/include/fribidi/fribidi-begindecls.h +3 -0
  85. package/dist/libraries/include/fribidi/fribidi-bidi-types-list.h +96 -0
  86. package/dist/libraries/include/fribidi/fribidi-bidi-types.h +405 -0
  87. package/dist/libraries/include/fribidi/fribidi-bidi.h +142 -0
  88. package/dist/libraries/include/fribidi/fribidi-brackets.h +89 -0
  89. package/dist/libraries/include/fribidi/fribidi-char-sets-list.h +54 -0
  90. package/dist/libraries/include/fribidi/fribidi-char-sets.h +106 -0
  91. package/dist/libraries/include/fribidi/fribidi-common.h +158 -0
  92. package/dist/libraries/include/fribidi/fribidi-config.h +23 -0
  93. package/dist/libraries/include/fribidi/fribidi-deprecated.h +175 -0
  94. package/dist/libraries/include/fribidi/fribidi-enddecls.h +3 -0
  95. package/dist/libraries/include/fribidi/fribidi-flags.h +72 -0
  96. package/dist/libraries/include/fribidi/fribidi-joining-types-list.h +44 -0
  97. package/dist/libraries/include/fribidi/fribidi-joining-types.h +249 -0
  98. package/dist/libraries/include/fribidi/fribidi-joining.h +74 -0
  99. package/dist/libraries/include/fribidi/fribidi-mirroring.h +86 -0
  100. package/dist/libraries/include/fribidi/fribidi-shape.h +71 -0
  101. package/dist/libraries/include/fribidi/fribidi-types.h +79 -0
  102. package/dist/libraries/include/fribidi/fribidi-unicode-version.h +10 -0
  103. package/dist/libraries/include/fribidi/fribidi-unicode.h +105 -0
  104. package/dist/libraries/include/fribidi/fribidi.h +129 -0
  105. package/dist/libraries/include/harfbuzz/hb-aat-layout.h +795 -0
  106. package/dist/libraries/include/harfbuzz/hb-aat.h +38 -0
  107. package/dist/libraries/include/harfbuzz/hb-blob.h +160 -0
  108. package/dist/libraries/include/harfbuzz/hb-buffer.h +799 -0
  109. package/dist/libraries/include/harfbuzz/hb-common.h +902 -0
  110. package/dist/libraries/include/harfbuzz/hb-cplusplus.hh +221 -0
  111. package/dist/libraries/include/harfbuzz/hb-deprecated.h +251 -0
  112. package/dist/libraries/include/harfbuzz/hb-draw.h +325 -0
  113. package/dist/libraries/include/harfbuzz/hb-face.h +181 -0
  114. package/dist/libraries/include/harfbuzz/hb-font.h +1108 -0
  115. package/dist/libraries/include/harfbuzz/hb-ft.h +145 -0
  116. package/dist/libraries/include/harfbuzz/hb-map.h +124 -0
  117. package/dist/libraries/include/harfbuzz/hb-ot-color.h +146 -0
  118. package/dist/libraries/include/harfbuzz/hb-ot-deprecated.h +141 -0
  119. package/dist/libraries/include/harfbuzz/hb-ot-font.h +45 -0
  120. package/dist/libraries/include/harfbuzz/hb-ot-layout.h +503 -0
  121. package/dist/libraries/include/harfbuzz/hb-ot-math.h +333 -0
  122. package/dist/libraries/include/harfbuzz/hb-ot-meta.h +72 -0
  123. package/dist/libraries/include/harfbuzz/hb-ot-metrics.h +129 -0
  124. package/dist/libraries/include/harfbuzz/hb-ot-name.h +158 -0
  125. package/dist/libraries/include/harfbuzz/hb-ot-shape.h +53 -0
  126. package/dist/libraries/include/harfbuzz/hb-ot-var.h +191 -0
  127. package/dist/libraries/include/harfbuzz/hb-ot.h +49 -0
  128. package/dist/libraries/include/harfbuzz/hb-set.h +200 -0
  129. package/dist/libraries/include/harfbuzz/hb-shape-plan.h +122 -0
  130. package/dist/libraries/include/harfbuzz/hb-shape.h +62 -0
  131. package/dist/libraries/include/harfbuzz/hb-style.h +81 -0
  132. package/dist/libraries/include/harfbuzz/hb-subset-repacker.h +81 -0
  133. package/dist/libraries/include/harfbuzz/hb-subset.h +234 -0
  134. package/dist/libraries/include/harfbuzz/hb-unicode.h +643 -0
  135. package/dist/libraries/include/harfbuzz/hb-version.h +95 -0
  136. package/dist/libraries/include/harfbuzz/hb.h +50 -0
  137. package/dist/libraries/lib/cmake/expat-2.4.7/expat-config-version.cmake +70 -0
  138. package/dist/libraries/lib/cmake/expat-2.4.7/expat-config.cmake +99 -0
  139. package/dist/libraries/lib/cmake/expat-2.4.7/expat-noconfig.cmake +19 -0
  140. package/dist/libraries/lib/cmake/expat-2.4.7/expat.cmake +99 -0
  141. package/dist/libraries/lib/libass.a +0 -0
  142. package/dist/libraries/lib/libass.la +41 -0
  143. package/dist/libraries/lib/libbrotlicommon.a +0 -0
  144. package/dist/libraries/lib/libbrotlidec.a +0 -0
  145. package/dist/libraries/lib/libbrotlienc.a +0 -0
  146. package/dist/libraries/lib/libexpat.a +0 -0
  147. package/dist/libraries/lib/libfontconfig.a +0 -0
  148. package/dist/libraries/lib/libfontconfig.la +41 -0
  149. package/dist/libraries/lib/libfreetype.a +0 -0
  150. package/dist/libraries/lib/libfreetype.la +41 -0
  151. package/dist/libraries/lib/libfribidi.a +0 -0
  152. package/dist/libraries/lib/libfribidi.la +41 -0
  153. package/dist/libraries/lib/libharfbuzz-subset.a +0 -0
  154. package/dist/libraries/lib/libharfbuzz-subset.la +41 -0
  155. package/dist/libraries/lib/libharfbuzz.a +0 -0
  156. package/dist/libraries/lib/libharfbuzz.la +41 -0
  157. package/dist/libraries/lib/pkgconfig/expat.pc +11 -0
  158. package/dist/libraries/lib/pkgconfig/fontconfig.pc +18 -0
  159. package/dist/libraries/lib/pkgconfig/freetype2.pc +14 -0
  160. package/dist/libraries/lib/pkgconfig/fribidi.pc +13 -0
  161. package/dist/libraries/lib/pkgconfig/harfbuzz-subset.pc +12 -0
  162. package/dist/libraries/lib/pkgconfig/harfbuzz.pc +13 -0
  163. package/dist/libraries/lib/pkgconfig/libass.pc +13 -0
  164. package/dist/libraries/lib/pkgconfig/libbrotlicommon.pc +11 -0
  165. package/dist/libraries/lib/pkgconfig/libbrotlidec.pc +12 -0
  166. package/dist/libraries/lib/pkgconfig/libbrotlienc.pc +12 -0
  167. package/dist/libraries/share/aclocal/freetype2.m4 +194 -0
  168. package/dist/libraries/share/doc/expat/AUTHORS +10 -0
  169. package/dist/libraries/share/doc/expat/changelog +1161 -0
  170. package/index.d.ts +115 -115
  171. package/package.json +1 -1
@@ -0,0 +1,95 @@
1
+ /*
2
+ * Copyright © 2011 Google, Inc.
3
+ *
4
+ * This is part of HarfBuzz, a text shaping library.
5
+ *
6
+ * Permission is hereby granted, without written agreement and without
7
+ * license or royalty fees, to use, copy, modify, and distribute this
8
+ * software and its documentation for any purpose, provided that the
9
+ * above copyright notice and the following two paragraphs appear in
10
+ * all copies of this software.
11
+ *
12
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13
+ * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14
+ * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15
+ * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16
+ * DAMAGE.
17
+ *
18
+ * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19
+ * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
+ * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21
+ * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23
+ *
24
+ * Google Author(s): Behdad Esfahbod
25
+ */
26
+
27
+ #if !defined(HB_H_IN) && !defined(HB_NO_SINGLE_HEADER_ERROR)
28
+ #error "Include <hb.h> instead."
29
+ #endif
30
+
31
+ #ifndef HB_VERSION_H
32
+ #define HB_VERSION_H
33
+
34
+ #include "hb-common.h"
35
+
36
+ HB_BEGIN_DECLS
37
+
38
+
39
+ /**
40
+ * HB_VERSION_MAJOR:
41
+ *
42
+ * The major component of the library version available at compile-time.
43
+ */
44
+ #define HB_VERSION_MAJOR 6
45
+ /**
46
+ * HB_VERSION_MINOR:
47
+ *
48
+ * The minor component of the library version available at compile-time.
49
+ */
50
+ #define HB_VERSION_MINOR 0
51
+ /**
52
+ * HB_VERSION_MICRO:
53
+ *
54
+ * The micro component of the library version available at compile-time.
55
+ */
56
+ #define HB_VERSION_MICRO 0
57
+
58
+ /**
59
+ * HB_VERSION_STRING:
60
+ *
61
+ * A string literal containing the library version available at compile-time.
62
+ */
63
+ #define HB_VERSION_STRING "6.0.0"
64
+
65
+ /**
66
+ * HB_VERSION_ATLEAST:
67
+ * @major: the major component of the version number
68
+ * @minor: the minor component of the version number
69
+ * @micro: the micro component of the version number
70
+ *
71
+ * Tests the library version at compile-time against a minimum value,
72
+ * as three integer components.
73
+ */
74
+ #define HB_VERSION_ATLEAST(major,minor,micro) \
75
+ ((major)*10000+(minor)*100+(micro) <= \
76
+ HB_VERSION_MAJOR*10000+HB_VERSION_MINOR*100+HB_VERSION_MICRO)
77
+
78
+
79
+ HB_EXTERN void
80
+ hb_version (unsigned int *major,
81
+ unsigned int *minor,
82
+ unsigned int *micro);
83
+
84
+ HB_EXTERN const char *
85
+ hb_version_string (void);
86
+
87
+ HB_EXTERN hb_bool_t
88
+ hb_version_atleast (unsigned int major,
89
+ unsigned int minor,
90
+ unsigned int micro);
91
+
92
+
93
+ HB_END_DECLS
94
+
95
+ #endif /* HB_VERSION_H */
@@ -0,0 +1,50 @@
1
+ /*
2
+ * Copyright © 2009 Red Hat, Inc.
3
+ *
4
+ * This is part of HarfBuzz, a text shaping library.
5
+ *
6
+ * Permission is hereby granted, without written agreement and without
7
+ * license or royalty fees, to use, copy, modify, and distribute this
8
+ * software and its documentation for any purpose, provided that the
9
+ * above copyright notice and the following two paragraphs appear in
10
+ * all copies of this software.
11
+ *
12
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13
+ * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14
+ * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15
+ * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16
+ * DAMAGE.
17
+ *
18
+ * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19
+ * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
+ * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21
+ * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23
+ *
24
+ * Red Hat Author(s): Behdad Esfahbod
25
+ */
26
+
27
+ #ifndef HB_H
28
+ #define HB_H
29
+ #define HB_H_IN
30
+
31
+ #include "hb-blob.h"
32
+ #include "hb-buffer.h"
33
+ #include "hb-common.h"
34
+ #include "hb-deprecated.h"
35
+ #include "hb-draw.h"
36
+ #include "hb-face.h"
37
+ #include "hb-font.h"
38
+ #include "hb-map.h"
39
+ #include "hb-set.h"
40
+ #include "hb-shape.h"
41
+ #include "hb-shape-plan.h"
42
+ #include "hb-style.h"
43
+ #include "hb-unicode.h"
44
+ #include "hb-version.h"
45
+
46
+ HB_BEGIN_DECLS
47
+ HB_END_DECLS
48
+
49
+ #undef HB_H_IN
50
+ #endif /* HB_H */
@@ -0,0 +1,70 @@
1
+ # This is a basic version file for the Config-mode of find_package().
2
+ # It is used by write_basic_package_version_file() as input file for configure_file()
3
+ # to create a version-file which can be installed along a config.cmake file.
4
+ #
5
+ # The created file sets PACKAGE_VERSION_EXACT if the current version string and
6
+ # the requested version string are exactly the same and it sets
7
+ # PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version,
8
+ # but only if the requested major version is the same as the current one.
9
+ # The variable CVF_VERSION must be set before calling configure_file().
10
+
11
+
12
+ set(PACKAGE_VERSION "2.4.7")
13
+
14
+ if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
15
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
16
+ else()
17
+
18
+ if("2.4.7" MATCHES "^([0-9]+)\\.")
19
+ set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
20
+ if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
21
+ string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
22
+ endif()
23
+ else()
24
+ set(CVF_VERSION_MAJOR "2.4.7")
25
+ endif()
26
+
27
+ if(PACKAGE_FIND_VERSION_RANGE)
28
+ # both endpoints of the range must have the expected major version
29
+ math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1")
30
+ if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
31
+ OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR)
32
+ OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT)))
33
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
34
+ elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
35
+ AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX)
36
+ OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX)))
37
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
38
+ else()
39
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
40
+ endif()
41
+ else()
42
+ if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR)
43
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
44
+ else()
45
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
46
+ endif()
47
+
48
+ if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
49
+ set(PACKAGE_VERSION_EXACT TRUE)
50
+ endif()
51
+ endif()
52
+ endif()
53
+
54
+
55
+ # if the installed project requested no architecture check, don't perform the check
56
+ if("FALSE")
57
+ return()
58
+ endif()
59
+
60
+ # if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
61
+ if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "4" STREQUAL "")
62
+ return()
63
+ endif()
64
+
65
+ # check that the installed version has the same 32/64bit-ness as the one which is currently searching:
66
+ if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "4")
67
+ math(EXPR installedBits "4 * 8")
68
+ set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
69
+ set(PACKAGE_VERSION_UNSUITABLE TRUE)
70
+ endif()
@@ -0,0 +1,99 @@
1
+ # __ __ _
2
+ # ___\ \/ /_ __ __ _| |_
3
+ # / _ \\ /| '_ \ / _` | __|
4
+ # | __// \| |_) | (_| | |_
5
+ # \___/_/\_\ .__/ \__,_|\__|
6
+ # |_| XML parser
7
+ #
8
+ # Copyright (c) 2019 Expat development team
9
+ # Licensed under the MIT license:
10
+ #
11
+ # Permission is hereby granted, free of charge, to any person obtaining
12
+ # a copy of this software and associated documentation files (the
13
+ # "Software"), to deal in the Software without restriction, including
14
+ # without limitation the rights to use, copy, modify, merge, publish,
15
+ # distribute, sublicense, and/or sell copies of the Software, and to permit
16
+ # persons to whom the Software is furnished to do so, subject to the
17
+ # following conditions:
18
+ #
19
+ # The above copyright notice and this permission notice shall be included
20
+ # in all copies or substantial portions of the Software.
21
+ #
22
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
25
+ # NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
26
+ # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
27
+ # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
28
+ # USE OR OTHER DEALINGS IN THE SOFTWARE.
29
+ #
30
+ if(NOT _expat_config_included)
31
+ # Protect against multiple inclusion
32
+ set(_expat_config_included TRUE)
33
+
34
+
35
+ include("${CMAKE_CURRENT_LIST_DIR}/expat.cmake")
36
+
37
+
38
+ ####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
39
+ ####### Any changes to this file will be overwritten by the next CMake run ####
40
+ ####### The input file was expat-config.cmake.in ########
41
+
42
+ get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
43
+
44
+ macro(set_and_check _var _file)
45
+ set(${_var} "${_file}")
46
+ if(NOT EXISTS "${_file}")
47
+ message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
48
+ endif()
49
+ endmacro()
50
+
51
+ macro(check_required_components _NAME)
52
+ foreach(comp ${${_NAME}_FIND_COMPONENTS})
53
+ if(NOT ${_NAME}_${comp}_FOUND)
54
+ if(${_NAME}_FIND_REQUIRED_${comp})
55
+ set(${_NAME}_FOUND FALSE)
56
+ endif()
57
+ endif()
58
+ endforeach()
59
+ endmacro()
60
+
61
+ ####################################################################################
62
+
63
+ #
64
+ # Supported components
65
+ #
66
+ macro(expat_register_component _NAME _AVAILABE)
67
+ set(expat_${_NAME}_FOUND ${_AVAILABE})
68
+ endmacro()
69
+
70
+ expat_register_component(attr_info OFF)
71
+ expat_register_component(dtd ON)
72
+ expat_register_component(large_size OFF)
73
+ expat_register_component(min_size OFF)
74
+ expat_register_component(ns ON)
75
+
76
+ if(1024)
77
+ expat_register_component(context_bytes ON)
78
+ else()
79
+ expat_register_component(context_bytes OFF)
80
+ endif()
81
+
82
+ if("char" STREQUAL "char")
83
+ expat_register_component(char ON)
84
+ expat_register_component(ushort OFF)
85
+ expat_register_component(wchar_t OFF)
86
+ elseif("char" STREQUAL "ushort")
87
+ expat_register_component(char OFF)
88
+ expat_register_component(ushort ON)
89
+ expat_register_component(wchar_t OFF)
90
+ elseif("char" STREQUAL "wchar_t")
91
+ expat_register_component(char OFF)
92
+ expat_register_component(ushort OFF)
93
+ expat_register_component(wchar_t ON)
94
+ endif()
95
+
96
+ check_required_components(expat)
97
+
98
+
99
+ endif(NOT _expat_config_included)
@@ -0,0 +1,19 @@
1
+ #----------------------------------------------------------------
2
+ # Generated CMake target import file for configuration "NoConfig".
3
+ #----------------------------------------------------------------
4
+
5
+ # Commands may need to know the format version.
6
+ set(CMAKE_IMPORT_FILE_VERSION 1)
7
+
8
+ # Import target "expat::expat" for configuration "NoConfig"
9
+ set_property(TARGET expat::expat APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG)
10
+ set_target_properties(expat::expat PROPERTIES
11
+ IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "C"
12
+ IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libexpat.a"
13
+ )
14
+
15
+ list(APPEND _IMPORT_CHECK_TARGETS expat::expat )
16
+ list(APPEND _IMPORT_CHECK_FILES_FOR_expat::expat "${_IMPORT_PREFIX}/lib/libexpat.a" )
17
+
18
+ # Commands beyond this point should not need to know the version.
19
+ set(CMAKE_IMPORT_FILE_VERSION)
@@ -0,0 +1,99 @@
1
+ # Generated by CMake
2
+
3
+ if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.6)
4
+ message(FATAL_ERROR "CMake >= 2.6.0 required")
5
+ endif()
6
+ cmake_policy(PUSH)
7
+ cmake_policy(VERSION 2.6...3.20)
8
+ #----------------------------------------------------------------
9
+ # Generated CMake target import file.
10
+ #----------------------------------------------------------------
11
+
12
+ # Commands may need to know the format version.
13
+ set(CMAKE_IMPORT_FILE_VERSION 1)
14
+
15
+ # Protect against multiple inclusion, which would fail when already imported targets are added once more.
16
+ set(_targetsDefined)
17
+ set(_targetsNotDefined)
18
+ set(_expectedTargets)
19
+ foreach(_expectedTarget expat::expat)
20
+ list(APPEND _expectedTargets ${_expectedTarget})
21
+ if(NOT TARGET ${_expectedTarget})
22
+ list(APPEND _targetsNotDefined ${_expectedTarget})
23
+ endif()
24
+ if(TARGET ${_expectedTarget})
25
+ list(APPEND _targetsDefined ${_expectedTarget})
26
+ endif()
27
+ endforeach()
28
+ if("${_targetsDefined}" STREQUAL "${_expectedTargets}")
29
+ unset(_targetsDefined)
30
+ unset(_targetsNotDefined)
31
+ unset(_expectedTargets)
32
+ set(CMAKE_IMPORT_FILE_VERSION)
33
+ cmake_policy(POP)
34
+ return()
35
+ endif()
36
+ if(NOT "${_targetsDefined}" STREQUAL "")
37
+ message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n")
38
+ endif()
39
+ unset(_targetsDefined)
40
+ unset(_targetsNotDefined)
41
+ unset(_expectedTargets)
42
+
43
+
44
+ # Compute the installation prefix relative to this file.
45
+ get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
46
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
47
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
48
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
49
+ if(_IMPORT_PREFIX STREQUAL "/")
50
+ set(_IMPORT_PREFIX "")
51
+ endif()
52
+
53
+ # Create imported target expat::expat
54
+ add_library(expat::expat STATIC IMPORTED)
55
+
56
+ set_target_properties(expat::expat PROPERTIES
57
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
58
+ INTERFACE_LINK_LIBRARIES "m"
59
+ )
60
+
61
+ if(CMAKE_VERSION VERSION_LESS 2.8.12)
62
+ message(FATAL_ERROR "This file relies on consumers using CMake 2.8.12 or greater.")
63
+ endif()
64
+
65
+ # Load information for each installed configuration.
66
+ get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
67
+ file(GLOB CONFIG_FILES "${_DIR}/expat-*.cmake")
68
+ foreach(f ${CONFIG_FILES})
69
+ include(${f})
70
+ endforeach()
71
+
72
+ # Cleanup temporary variables.
73
+ set(_IMPORT_PREFIX)
74
+
75
+ # Loop over all imported files and verify that they actually exist
76
+ foreach(target ${_IMPORT_CHECK_TARGETS} )
77
+ foreach(file ${_IMPORT_CHECK_FILES_FOR_${target}} )
78
+ if(NOT EXISTS "${file}" )
79
+ message(FATAL_ERROR "The imported target \"${target}\" references the file
80
+ \"${file}\"
81
+ but this file does not exist. Possible reasons include:
82
+ * The file was deleted, renamed, or moved to another location.
83
+ * An install or uninstall procedure did not complete successfully.
84
+ * The installation package was faulty and contained
85
+ \"${CMAKE_CURRENT_LIST_FILE}\"
86
+ but not all the files it references.
87
+ ")
88
+ endif()
89
+ endforeach()
90
+ unset(_IMPORT_CHECK_FILES_FOR_${target})
91
+ endforeach()
92
+ unset(_IMPORT_CHECK_TARGETS)
93
+
94
+ # This file does not depend on other imported targets which have
95
+ # been exported from the same project but in a separate export set.
96
+
97
+ # Commands beyond this point should not need to know the version.
98
+ set(CMAKE_IMPORT_FILE_VERSION)
99
+ cmake_policy(POP)
Binary file
@@ -0,0 +1,41 @@
1
+ # libass.la - a libtool library file
2
+ # Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-15build2
3
+ #
4
+ # Please DO NOT delete this file!
5
+ # It is necessary for linking the library.
6
+
7
+ # The name that we can dlopen(3).
8
+ dlname=''
9
+
10
+ # Names of this library.
11
+ library_names=''
12
+
13
+ # The name of the static archive.
14
+ old_library='libass.a'
15
+
16
+ # Linker flags that cannot go in dependency_libs.
17
+ inherited_linker_flags=''
18
+
19
+ # Libraries that this one depends upon.
20
+ dependency_libs=' -R/code/dist/libraries/lib -L/code/dist/libraries/lib /code/dist/libraries/lib/libfribidi.la -L/code/build/lib/freetype/build_hb/dist_hb/lib /code/dist/libraries/lib/libfontconfig.la -lexpat /code/dist/libraries/lib/libfreetype.la /code/dist/libraries/lib/libharfbuzz.la -lm /code/build/lib/freetype/build_hb/dist_hb/lib/libfreetype.la -lbrotlidec'
21
+
22
+ # Names of additional weak libraries provided by this library
23
+ weak_library_names=''
24
+
25
+ # Version information for libass.
26
+ current=11
27
+ age=2
28
+ revision=1
29
+
30
+ # Is this an already installed library?
31
+ installed=yes
32
+
33
+ # Should we warn about portability when linking against -modules?
34
+ shouldnotlink=no
35
+
36
+ # Files to dlopen/dlpreopen
37
+ dlopen=''
38
+ dlpreopen=''
39
+
40
+ # Directory that this library needs to be installed in:
41
+ libdir='/code/dist/libraries/lib'
Binary file
@@ -0,0 +1,41 @@
1
+ # libfontconfig.la - a libtool library file
2
+ # Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-15build2
3
+ #
4
+ # Please DO NOT delete this file!
5
+ # It is necessary for linking the library.
6
+
7
+ # The name that we can dlopen(3).
8
+ dlname=''
9
+
10
+ # Names of this library.
11
+ library_names=''
12
+
13
+ # The name of the static archive.
14
+ old_library='libfontconfig.a'
15
+
16
+ # Linker flags that cannot go in dependency_libs.
17
+ inherited_linker_flags=''
18
+
19
+ # Libraries that this one depends upon.
20
+ dependency_libs=' -R/code/dist/libraries/lib -L/code/dist/libraries/lib /code/dist/libraries/lib/libfreetype.la /code/dist/libraries/lib/libharfbuzz.la -L/code/build/lib/freetype/build_hb/dist_hb/lib /code/build/lib/freetype/build_hb/dist_hb/lib/libfreetype.la -lbrotlidec -lexpat -lm'
21
+
22
+ # Names of additional weak libraries provided by this library
23
+ weak_library_names=''
24
+
25
+ # Version information for libfontconfig.
26
+ current=13
27
+ age=12
28
+ revision=0
29
+
30
+ # Is this an already installed library?
31
+ installed=yes
32
+
33
+ # Should we warn about portability when linking against -modules?
34
+ shouldnotlink=no
35
+
36
+ # Files to dlopen/dlpreopen
37
+ dlopen=''
38
+ dlpreopen=''
39
+
40
+ # Directory that this library needs to be installed in:
41
+ libdir='/code/dist/libraries/lib'
Binary file
@@ -0,0 +1,41 @@
1
+ # libfreetype.la - a libtool library file
2
+ # Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-15build2
3
+ #
4
+ # Please DO NOT delete this file!
5
+ # It is necessary for linking the library.
6
+
7
+ # The name that we can dlopen(3).
8
+ dlname=''
9
+
10
+ # Names of this library.
11
+ library_names=''
12
+
13
+ # The name of the static archive.
14
+ old_library='libfreetype.a'
15
+
16
+ # Linker flags that cannot go in dependency_libs.
17
+ inherited_linker_flags=''
18
+
19
+ # Libraries that this one depends upon.
20
+ dependency_libs=' -R/code/dist/libraries/lib -L/code/dist/libraries/lib /code/dist/libraries/lib/libharfbuzz.la -lm -L/code/build/lib/freetype/build_hb/dist_hb/lib /code/build/lib/freetype/build_hb/dist_hb/lib/libfreetype.la -lbrotlidec'
21
+
22
+ # Names of additional weak libraries provided by this library
23
+ weak_library_names=''
24
+
25
+ # Version information for libfreetype.
26
+ current=24
27
+ age=18
28
+ revision=0
29
+
30
+ # Is this an already installed library?
31
+ installed=yes
32
+
33
+ # Should we warn about portability when linking against -modules?
34
+ shouldnotlink=no
35
+
36
+ # Files to dlopen/dlpreopen
37
+ dlopen=''
38
+ dlpreopen=''
39
+
40
+ # Directory that this library needs to be installed in:
41
+ libdir='/code/dist/libraries/lib'
Binary file
@@ -0,0 +1,41 @@
1
+ # libfribidi.la - a libtool library file
2
+ # Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-15build2
3
+ #
4
+ # Please DO NOT delete this file!
5
+ # It is necessary for linking the library.
6
+
7
+ # The name that we can dlopen(3).
8
+ dlname=''
9
+
10
+ # Names of this library.
11
+ library_names=''
12
+
13
+ # The name of the static archive.
14
+ old_library='libfribidi.a'
15
+
16
+ # Linker flags that cannot go in dependency_libs.
17
+ inherited_linker_flags=''
18
+
19
+ # Libraries that this one depends upon.
20
+ dependency_libs=''
21
+
22
+ # Names of additional weak libraries provided by this library
23
+ weak_library_names=''
24
+
25
+ # Version information for libfribidi.
26
+ current=4
27
+ age=4
28
+ revision=0
29
+
30
+ # Is this an already installed library?
31
+ installed=yes
32
+
33
+ # Should we warn about portability when linking against -modules?
34
+ shouldnotlink=no
35
+
36
+ # Files to dlopen/dlpreopen
37
+ dlopen=''
38
+ dlpreopen=''
39
+
40
+ # Directory that this library needs to be installed in:
41
+ libdir='/code/dist/libraries/lib'
@@ -0,0 +1,41 @@
1
+ # libharfbuzz-subset.la - a libtool library file
2
+ # Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-15build2
3
+ #
4
+ # Please DO NOT delete this file!
5
+ # It is necessary for linking the library.
6
+
7
+ # The name that we can dlopen(3).
8
+ dlname=''
9
+
10
+ # Names of this library.
11
+ library_names=''
12
+
13
+ # The name of the static archive.
14
+ old_library='libharfbuzz-subset.a'
15
+
16
+ # Linker flags that cannot go in dependency_libs.
17
+ inherited_linker_flags=''
18
+
19
+ # Libraries that this one depends upon.
20
+ dependency_libs=' -R/code/dist/libraries/lib /code/dist/libraries/lib/libharfbuzz.la -lm -L/code/build/lib/freetype/build_hb/dist_hb/lib /code/build/lib/freetype/build_hb/dist_hb/lib/libfreetype.la -L/code/dist/libraries/lib -lbrotlidec'
21
+
22
+ # Names of additional weak libraries provided by this library
23
+ weak_library_names=''
24
+
25
+ # Version information for libharfbuzz-subset.
26
+ current=60000
27
+ age=60000
28
+ revision=0
29
+
30
+ # Is this an already installed library?
31
+ installed=yes
32
+
33
+ # Should we warn about portability when linking against -modules?
34
+ shouldnotlink=no
35
+
36
+ # Files to dlopen/dlpreopen
37
+ dlopen=''
38
+ dlpreopen=''
39
+
40
+ # Directory that this library needs to be installed in:
41
+ libdir='/code/dist/libraries/lib'
Binary file