cairo 1.14.0-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of cairo might be problematic. Click here for more details.

Files changed (636) hide show
  1. checksums.yaml +7 -0
  2. data/AUTHORS +7 -0
  3. data/COPYING +59 -0
  4. data/GPL +340 -0
  5. data/Gemfile +5 -0
  6. data/NEWS +429 -0
  7. data/README.rdoc +120 -0
  8. data/Rakefile +620 -0
  9. data/ext/cairo/cairo.def +140 -0
  10. data/ext/cairo/depend +3 -0
  11. data/ext/cairo/extconf.rb +202 -0
  12. data/ext/cairo/rb_cairo.c +111 -0
  13. data/ext/cairo/rb_cairo.h +348 -0
  14. data/ext/cairo/rb_cairo_constants.c +673 -0
  15. data/ext/cairo/rb_cairo_context.c +1741 -0
  16. data/ext/cairo/rb_cairo_device.c +475 -0
  17. data/ext/cairo/rb_cairo_exception.c +446 -0
  18. data/ext/cairo/rb_cairo_font_extents.c +200 -0
  19. data/ext/cairo/rb_cairo_font_face.c +726 -0
  20. data/ext/cairo/rb_cairo_font_options.c +197 -0
  21. data/ext/cairo/rb_cairo_glyph.c +161 -0
  22. data/ext/cairo/rb_cairo_io.c +166 -0
  23. data/ext/cairo/rb_cairo_io.h +44 -0
  24. data/ext/cairo/rb_cairo_matrix.c +366 -0
  25. data/ext/cairo/rb_cairo_path.c +459 -0
  26. data/ext/cairo/rb_cairo_pattern.c +1192 -0
  27. data/ext/cairo/rb_cairo_private.c +255 -0
  28. data/ext/cairo/rb_cairo_private.h +129 -0
  29. data/ext/cairo/rb_cairo_rectangle.c +83 -0
  30. data/ext/cairo/rb_cairo_region.c +385 -0
  31. data/ext/cairo/rb_cairo_scaled_font.c +235 -0
  32. data/ext/cairo/rb_cairo_surface.c +2284 -0
  33. data/ext/cairo/rb_cairo_text_cluster.c +151 -0
  34. data/ext/cairo/rb_cairo_text_extents.c +221 -0
  35. data/lib/2.0/cairo.so +0 -0
  36. data/lib/2.1/cairo.so +0 -0
  37. data/lib/2.2/cairo.so +0 -0
  38. data/lib/cairo.rb +154 -0
  39. data/lib/cairo/color.rb +267 -0
  40. data/lib/cairo/colors.rb +656 -0
  41. data/lib/cairo/constants.rb +24 -0
  42. data/lib/cairo/context.rb +29 -0
  43. data/lib/cairo/context/blur.rb +45 -0
  44. data/lib/cairo/context/circle.rb +9 -0
  45. data/lib/cairo/context/color.rb +11 -0
  46. data/lib/cairo/context/path.rb +117 -0
  47. data/lib/cairo/context/rectangle.rb +33 -0
  48. data/lib/cairo/context/triangle.rb +12 -0
  49. data/lib/cairo/device.rb +13 -0
  50. data/lib/cairo/paper.rb +183 -0
  51. data/lib/cairo/papers.rb +65 -0
  52. data/lib/cairo/path.rb +15 -0
  53. data/lib/cairo/pattern.rb +12 -0
  54. data/lib/cairo/point.rb +7 -0
  55. data/lib/cairo/surface.rb +13 -0
  56. data/samples/agg/aa_test.rb +304 -0
  57. data/samples/blur.rb +46 -0
  58. data/samples/pac-nomralize.rb +170 -0
  59. data/samples/pac-tee.rb +170 -0
  60. data/samples/pac.rb +98 -0
  61. data/samples/png.rb +44 -0
  62. data/samples/scalable.rb +55 -0
  63. data/samples/text-on-path.rb +59 -0
  64. data/samples/text2.rb +130 -0
  65. data/test/cairo-test-utils.rb +44 -0
  66. data/test/run-test.rb +29 -0
  67. data/test/test_color.rb +17 -0
  68. data/test/test_constants.rb +27 -0
  69. data/test/test_context.rb +105 -0
  70. data/test/test_exception.rb +36 -0
  71. data/test/test_font_extents.rb +36 -0
  72. data/test/test_font_face.rb +257 -0
  73. data/test/test_font_options.rb +13 -0
  74. data/test/test_image_surface.rb +28 -0
  75. data/test/test_paper.rb +81 -0
  76. data/test/test_quartz_image_surface.rb +13 -0
  77. data/test/test_raster_source_pattern.rb +162 -0
  78. data/test/test_recording_surface.rb +19 -0
  79. data/test/test_region.rb +102 -0
  80. data/test/test_scaled_font.rb +34 -0
  81. data/test/test_script_device.rb +46 -0
  82. data/test/test_script_surface.rb +13 -0
  83. data/test/test_surface.rb +61 -0
  84. data/test/test_tee_surface.rb +32 -0
  85. data/test/test_text_cluster.rb +32 -0
  86. data/test/test_text_extents.rb +40 -0
  87. data/test/test_text_to_glyphs_data.rb +51 -0
  88. data/test/test_xml_device.rb +22 -0
  89. data/test/test_xml_surface.rb +34 -0
  90. data/vendor/local/bin/fc-cache.exe +0 -0
  91. data/vendor/local/bin/fc-cat.exe +0 -0
  92. data/vendor/local/bin/fc-list.exe +0 -0
  93. data/vendor/local/bin/fc-match.exe +0 -0
  94. data/vendor/local/bin/fc-pattern.exe +0 -0
  95. data/vendor/local/bin/fc-query.exe +0 -0
  96. data/vendor/local/bin/fc-scan.exe +0 -0
  97. data/vendor/local/bin/fc-validate.exe +0 -0
  98. data/vendor/local/bin/freetype-config +163 -0
  99. data/vendor/local/bin/libcairo-2.dll +0 -0
  100. data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
  101. data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
  102. data/vendor/local/bin/libfontconfig-1.dll +0 -0
  103. data/vendor/local/bin/libfreetype-6.dll +0 -0
  104. data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
  105. data/vendor/local/bin/libpixman-1-0.dll +0 -0
  106. data/vendor/local/bin/libpng-config +127 -0
  107. data/vendor/local/bin/libpng16-16.dll +0 -0
  108. data/vendor/local/bin/libpng16-config +127 -0
  109. data/vendor/local/bin/libstdc++-6.dll +0 -0
  110. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  111. data/vendor/local/bin/libxml2-2.dll +0 -0
  112. data/vendor/local/bin/png-fix-itxt.exe +0 -0
  113. data/vendor/local/bin/pngfix.exe +0 -0
  114. data/vendor/local/bin/xml2-config +106 -0
  115. data/vendor/local/bin/xmlcatalog.exe +0 -0
  116. data/vendor/local/bin/xmllint.exe +0 -0
  117. data/vendor/local/bin/zlib1.dll +0 -0
  118. data/vendor/local/etc/fonts/conf.d/10-scale-bitmap-fonts.conf +81 -0
  119. data/vendor/local/etc/fonts/conf.d/20-unhint-small-vera.conf +48 -0
  120. data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +546 -0
  121. data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +24 -0
  122. data/vendor/local/etc/fonts/conf.d/40-nonlatin.conf +231 -0
  123. data/vendor/local/etc/fonts/conf.d/45-latin.conf +189 -0
  124. data/vendor/local/etc/fonts/conf.d/49-sansserif.conf +21 -0
  125. data/vendor/local/etc/fonts/conf.d/50-user.conf +15 -0
  126. data/vendor/local/etc/fonts/conf.d/51-local.conf +6 -0
  127. data/vendor/local/etc/fonts/conf.d/60-latin.conf +70 -0
  128. data/vendor/local/etc/fonts/conf.d/65-fonts-persian.conf +419 -0
  129. data/vendor/local/etc/fonts/conf.d/65-nonlatin.conf +196 -0
  130. data/vendor/local/etc/fonts/conf.d/69-unifont.conf +28 -0
  131. data/vendor/local/etc/fonts/conf.d/80-delicious.conf +19 -0
  132. data/vendor/local/etc/fonts/conf.d/90-synthetic.conf +64 -0
  133. data/vendor/local/etc/fonts/conf.d/README +23 -0
  134. data/vendor/local/etc/fonts/fonts.conf +155 -0
  135. data/vendor/local/include/cairo/cairo-deprecated.h +123 -0
  136. data/vendor/local/include/cairo/cairo-features.h +31 -0
  137. data/vendor/local/include/cairo/cairo-ft.h +118 -0
  138. data/vendor/local/include/cairo/cairo-gobject.h +192 -0
  139. data/vendor/local/include/cairo/cairo-pdf.h +94 -0
  140. data/vendor/local/include/cairo/cairo-ps.h +116 -0
  141. data/vendor/local/include/cairo/cairo-script-interpreter.h +124 -0
  142. data/vendor/local/include/cairo/cairo-script.h +98 -0
  143. data/vendor/local/include/cairo/cairo-svg.h +84 -0
  144. data/vendor/local/include/cairo/cairo-version.h +8 -0
  145. data/vendor/local/include/cairo/cairo-win32.h +112 -0
  146. data/vendor/local/include/cairo/cairo.h +3153 -0
  147. data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
  148. data/vendor/local/include/fontconfig/fcprivate.h +124 -0
  149. data/vendor/local/include/fontconfig/fontconfig.h +1010 -0
  150. data/vendor/local/include/freetype2/config/ftconfig.h +706 -0
  151. data/vendor/local/include/freetype2/config/ftheader.h +832 -0
  152. data/vendor/local/include/freetype2/config/ftmodule.h +20 -0
  153. data/vendor/local/include/freetype2/config/ftoption.h +846 -0
  154. data/vendor/local/include/freetype2/config/ftstdlib.h +174 -0
  155. data/vendor/local/include/freetype2/freetype.h +4076 -0
  156. data/vendor/local/include/freetype2/ft2build.h +42 -0
  157. data/vendor/local/include/freetype2/ftadvanc.h +182 -0
  158. data/vendor/local/include/freetype2/ftautoh.h +402 -0
  159. data/vendor/local/include/freetype2/ftbbox.h +102 -0
  160. data/vendor/local/include/freetype2/ftbdf.h +210 -0
  161. data/vendor/local/include/freetype2/ftbitmap.h +227 -0
  162. data/vendor/local/include/freetype2/ftbzip2.h +102 -0
  163. data/vendor/local/include/freetype2/ftcache.h +1057 -0
  164. data/vendor/local/include/freetype2/ftcffdrv.h +254 -0
  165. data/vendor/local/include/freetype2/ftchapters.h +121 -0
  166. data/vendor/local/include/freetype2/ftcid.h +166 -0
  167. data/vendor/local/include/freetype2/fterrdef.h +249 -0
  168. data/vendor/local/include/freetype2/fterrors.h +198 -0
  169. data/vendor/local/include/freetype2/ftgasp.h +128 -0
  170. data/vendor/local/include/freetype2/ftglyph.h +620 -0
  171. data/vendor/local/include/freetype2/ftgxval.h +358 -0
  172. data/vendor/local/include/freetype2/ftgzip.h +149 -0
  173. data/vendor/local/include/freetype2/ftimage.h +1322 -0
  174. data/vendor/local/include/freetype2/ftincrem.h +353 -0
  175. data/vendor/local/include/freetype2/ftlcdfil.h +251 -0
  176. data/vendor/local/include/freetype2/ftlist.h +277 -0
  177. data/vendor/local/include/freetype2/ftlzw.h +99 -0
  178. data/vendor/local/include/freetype2/ftmac.h +274 -0
  179. data/vendor/local/include/freetype2/ftmm.h +377 -0
  180. data/vendor/local/include/freetype2/ftmodapi.h +641 -0
  181. data/vendor/local/include/freetype2/ftmoderr.h +194 -0
  182. data/vendor/local/include/freetype2/ftotval.h +203 -0
  183. data/vendor/local/include/freetype2/ftoutln.h +572 -0
  184. data/vendor/local/include/freetype2/ftpfr.h +172 -0
  185. data/vendor/local/include/freetype2/ftrender.h +238 -0
  186. data/vendor/local/include/freetype2/ftsizes.h +159 -0
  187. data/vendor/local/include/freetype2/ftsnames.h +200 -0
  188. data/vendor/local/include/freetype2/ftstroke.h +751 -0
  189. data/vendor/local/include/freetype2/ftsynth.h +81 -0
  190. data/vendor/local/include/freetype2/ftsystem.h +347 -0
  191. data/vendor/local/include/freetype2/fttrigon.h +350 -0
  192. data/vendor/local/include/freetype2/ftttdrv.h +170 -0
  193. data/vendor/local/include/freetype2/fttypes.h +598 -0
  194. data/vendor/local/include/freetype2/ftwinfnt.h +275 -0
  195. data/vendor/local/include/freetype2/ftxf86.h +83 -0
  196. data/vendor/local/include/freetype2/t1tables.h +662 -0
  197. data/vendor/local/include/freetype2/ttnameid.h +1237 -0
  198. data/vendor/local/include/freetype2/tttables.h +787 -0
  199. data/vendor/local/include/freetype2/tttags.h +111 -0
  200. data/vendor/local/include/freetype2/ttunpat.h +59 -0
  201. data/vendor/local/include/libpng16/png.h +3276 -0
  202. data/vendor/local/include/libpng16/pngconf.h +644 -0
  203. data/vendor/local/include/libpng16/pnglibconf.h +208 -0
  204. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  205. data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
  206. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  207. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  208. data/vendor/local/include/libxml2/libxml/SAX2.h +178 -0
  209. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  210. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  211. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  212. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  213. data/vendor/local/include/libxml2/libxml/dict.h +80 -0
  214. data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
  215. data/vendor/local/include/libxml2/libxml/entities.h +151 -0
  216. data/vendor/local/include/libxml2/libxml/globals.h +509 -0
  217. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  218. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  219. data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
  220. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  221. data/vendor/local/include/libxml2/libxml/parser.h +1241 -0
  222. data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
  223. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  224. data/vendor/local/include/libxml2/libxml/relaxng.h +217 -0
  225. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  226. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  227. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  228. data/vendor/local/include/libxml2/libxml/tree.h +1310 -0
  229. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  230. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  231. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  232. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  233. data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
  234. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  235. data/vendor/local/include/libxml2/libxml/xmlerror.h +945 -0
  236. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  237. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  238. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  239. data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
  240. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  241. data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
  242. data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
  243. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  244. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  245. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  246. data/vendor/local/include/libxml2/libxml/xmlversion.h +489 -0
  247. data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
  248. data/vendor/local/include/libxml2/libxml/xpath.h +557 -0
  249. data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
  250. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  251. data/vendor/local/include/pixman-1/pixman-version.h +50 -0
  252. data/vendor/local/include/pixman-1/pixman.h +1111 -0
  253. data/vendor/local/include/png.h +3276 -0
  254. data/vendor/local/include/pngconf.h +644 -0
  255. data/vendor/local/include/pnglibconf.h +208 -0
  256. data/vendor/local/include/zconf.h +511 -0
  257. data/vendor/local/include/zlib.h +1768 -0
  258. data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +50 -0
  259. data/vendor/local/lib/fontconfig.def +207 -0
  260. data/vendor/local/lib/libcairo-gobject.a +0 -0
  261. data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
  262. data/vendor/local/lib/libcairo-gobject.la +41 -0
  263. data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
  264. data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
  265. data/vendor/local/lib/libcairo-script-interpreter.la +41 -0
  266. data/vendor/local/lib/libcairo.a +0 -0
  267. data/vendor/local/lib/libcairo.dll.a +0 -0
  268. data/vendor/local/lib/libcairo.la +41 -0
  269. data/vendor/local/lib/libfontconfig.dll.a +0 -0
  270. data/vendor/local/lib/libfontconfig.la +41 -0
  271. data/vendor/local/lib/libfreetype.a +0 -0
  272. data/vendor/local/lib/libfreetype.dll.a +0 -0
  273. data/vendor/local/lib/libfreetype.la +41 -0
  274. data/vendor/local/lib/libpixman-1.a +0 -0
  275. data/vendor/local/lib/libpixman-1.dll.a +0 -0
  276. data/vendor/local/lib/libpixman-1.la +41 -0
  277. data/vendor/local/lib/libpng.a +0 -0
  278. data/vendor/local/lib/libpng.dll.a +0 -0
  279. data/vendor/local/lib/libpng.la +41 -0
  280. data/vendor/local/lib/libpng16.a +0 -0
  281. data/vendor/local/lib/libpng16.dll.a +0 -0
  282. data/vendor/local/lib/libpng16.la +41 -0
  283. data/vendor/local/lib/libxml2.a +0 -0
  284. data/vendor/local/lib/libxml2.dll.a +0 -0
  285. data/vendor/local/lib/libxml2.la +41 -0
  286. data/vendor/local/lib/libz.a +0 -0
  287. data/vendor/local/lib/libz.dll.a +0 -0
  288. data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
  289. data/vendor/local/lib/pkgconfig/cairo-ft.pc +12 -0
  290. data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
  291. data/vendor/local/lib/pkgconfig/cairo-pdf.pc +12 -0
  292. data/vendor/local/lib/pkgconfig/cairo-png.pc +12 -0
  293. data/vendor/local/lib/pkgconfig/cairo-ps.pc +12 -0
  294. data/vendor/local/lib/pkgconfig/cairo-script.pc +12 -0
  295. data/vendor/local/lib/pkgconfig/cairo-svg.pc +12 -0
  296. data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +12 -0
  297. data/vendor/local/lib/pkgconfig/cairo-win32.pc +12 -0
  298. data/vendor/local/lib/pkgconfig/cairo.pc +13 -0
  299. data/vendor/local/lib/pkgconfig/fontconfig.pc +18 -0
  300. data/vendor/local/lib/pkgconfig/freetype2.pc +14 -0
  301. data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
  302. data/vendor/local/lib/pkgconfig/libpng16.pc +11 -0
  303. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  304. data/vendor/local/lib/pkgconfig/pixman-1.pc +11 -0
  305. data/vendor/local/lib/pkgconfig/zlib.pc +13 -0
  306. data/vendor/local/lib/xml2Conf.sh +8 -0
  307. data/vendor/local/share/aclocal/freetype2.m4 +194 -0
  308. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  309. data/vendor/local/share/doc/libxml2-2.9.2/Copyright +23 -0
  310. data/vendor/local/share/doc/libxml2-2.9.2/examples/testHTML.c +880 -0
  311. data/vendor/local/share/doc/libxml2-2.9.2/examples/testSAX.c +1198 -0
  312. data/vendor/local/share/doc/libxml2-2.9.2/examples/testXPath.c +229 -0
  313. data/vendor/local/share/doc/libxml2-2.9.2/examples/xmllint.c +3801 -0
  314. data/vendor/local/share/doc/libxml2-2.9.2/html/DOM.gif +0 -0
  315. data/vendor/local/share/doc/libxml2-2.9.2/html/FAQ.html +299 -0
  316. data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-180x168.gif +0 -0
  317. data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-90x34.gif +0 -0
  318. data/vendor/local/share/doc/libxml2-2.9.2/html/encoding.html +217 -0
  319. data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xml +751 -0
  320. data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xsl +174 -0
  321. data/vendor/local/share/doc/libxml2-2.9.2/html/html/book1.html +13 -0
  322. data/vendor/local/share/doc/libxml2-2.9.2/html/html/home.png +0 -0
  323. data/vendor/local/share/doc/libxml2-2.9.2/html/html/index.html +13 -0
  324. data/vendor/local/share/doc/libxml2-2.9.2/html/html/left.png +0 -0
  325. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-DOCBparser.html +51 -0
  326. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLparser.html +184 -0
  327. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLtree.html +73 -0
  328. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX.html +125 -0
  329. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX2.html +128 -0
  330. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-c14n.html +38 -0
  331. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-catalog.html +142 -0
  332. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-chvalid.html +72 -0
  333. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-debugXML.html +120 -0
  334. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-dict.html +58 -0
  335. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-encoding.html +124 -0
  336. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-entities.html +79 -0
  337. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-globals.html +152 -0
  338. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-hash.html +116 -0
  339. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-lib.html +13 -0
  340. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-list.html +120 -0
  341. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanoftp.html +94 -0
  342. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanohttp.html +65 -0
  343. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parser.html +559 -0
  344. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parserInternals.html +322 -0
  345. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-pattern.html +76 -0
  346. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-relaxng.html +162 -0
  347. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schemasInternals.html +373 -0
  348. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schematron.html +81 -0
  349. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-threads.html +72 -0
  350. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-tree.html +990 -0
  351. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-uri.html +73 -0
  352. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-valid.html +289 -0
  353. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xinclude.html +59 -0
  354. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xlink.html +82 -0
  355. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlIO.html +212 -0
  356. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlautomata.html +85 -0
  357. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlerror.html +865 -0
  358. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlexports.html +20 -0
  359. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmemory.html +107 -0
  360. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmodule.html +38 -0
  361. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlreader.html +330 -0
  362. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlregexp.html +143 -0
  363. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlsave.html +60 -0
  364. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemas.html +185 -0
  365. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemastypes.html +123 -0
  366. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlstring.html +108 -0
  367. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlunicode.html +512 -0
  368. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlversion.html +63 -0
  369. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlwriter.html +261 -0
  370. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpath.html +316 -0
  371. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpathInternals.html +394 -0
  372. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpointer.html +83 -0
  373. data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xzlib.html +16 -0
  374. data/vendor/local/share/doc/libxml2-2.9.2/html/html/right.png +0 -0
  375. data/vendor/local/share/doc/libxml2-2.9.2/html/html/up.png +0 -0
  376. data/vendor/local/share/doc/libxml2-2.9.2/html/index.html +14 -0
  377. data/vendor/local/share/doc/libxml2-2.9.2/html/io1.c +166 -0
  378. data/vendor/local/share/doc/libxml2-2.9.2/html/io1.res +5 -0
  379. data/vendor/local/share/doc/libxml2-2.9.2/html/io2.c +58 -0
  380. data/vendor/local/share/doc/libxml2-2.9.2/html/io2.res +2 -0
  381. data/vendor/local/share/doc/libxml2-2.9.2/html/libxml.gif +0 -0
  382. data/vendor/local/share/doc/libxml2-2.9.2/html/parse1.c +56 -0
  383. data/vendor/local/share/doc/libxml2-2.9.2/html/parse2.c +72 -0
  384. data/vendor/local/share/doc/libxml2-2.9.2/html/parse3.c +60 -0
  385. data/vendor/local/share/doc/libxml2-2.9.2/html/parse4.c +143 -0
  386. data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.c +107 -0
  387. data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.res +14 -0
  388. data/vendor/local/share/doc/libxml2-2.9.2/html/reader2.c +122 -0
  389. data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.c +120 -0
  390. data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.res +13 -0
  391. data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.c +122 -0
  392. data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.res +3 -0
  393. data/vendor/local/share/doc/libxml2-2.9.2/html/redhat.gif +0 -0
  394. data/vendor/local/share/doc/libxml2-2.9.2/html/smallfootonly.gif +0 -0
  395. data/vendor/local/share/doc/libxml2-2.9.2/html/structure.gif +0 -0
  396. data/vendor/local/share/doc/libxml2-2.9.2/html/test1.xml +1 -0
  397. data/vendor/local/share/doc/libxml2-2.9.2/html/test2.xml +13 -0
  398. data/vendor/local/share/doc/libxml2-2.9.2/html/test3.xml +39 -0
  399. data/vendor/local/share/doc/libxml2-2.9.2/html/testWriter.c +1198 -0
  400. data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.c +94 -0
  401. data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.res +4 -0
  402. data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.c +118 -0
  403. data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.res +18 -0
  404. data/vendor/local/share/doc/libxml2-2.9.2/html/tst.xml +7 -0
  405. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apa.html +8 -0
  406. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apb.html +14 -0
  407. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apc.html +82 -0
  408. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apd.html +76 -0
  409. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ape.html +78 -0
  410. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apf.html +67 -0
  411. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apg.html +75 -0
  412. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/aph.html +76 -0
  413. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/api.html +4 -0
  414. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s02.html +14 -0
  415. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s03.html +47 -0
  416. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s04.html +54 -0
  417. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s05.html +55 -0
  418. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s06.html +35 -0
  419. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s07.html +30 -0
  420. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s08.html +38 -0
  421. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s09.html +63 -0
  422. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/blank.png +0 -0
  423. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/1.png +0 -0
  424. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/10.png +0 -0
  425. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/2.png +0 -0
  426. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/3.png +0 -0
  427. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/4.png +0 -0
  428. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/5.png +0 -0
  429. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/6.png +0 -0
  430. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/7.png +0 -0
  431. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/8.png +0 -0
  432. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/9.png +0 -0
  433. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/caution.png +0 -0
  434. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/draft.png +0 -0
  435. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/home.png +0 -0
  436. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/important.png +0 -0
  437. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/next.png +0 -0
  438. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/note.png +0 -0
  439. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/prev.png +0 -0
  440. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/tip.png +0 -0
  441. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-blank.png +0 -0
  442. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-minus.png +0 -0
  443. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-plus.png +0 -0
  444. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/up.png +0 -0
  445. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/warning.png +0 -0
  446. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddattribute.c +64 -0
  447. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddkeyword.c +75 -0
  448. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeconvert.c +73 -0
  449. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includegetattribute.c +72 -0
  450. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includekeyword.c +79 -0
  451. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includexpath.c +74 -0
  452. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/index.html +14 -0
  453. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ix01.html +1 -0
  454. data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/xmltutorial.pdf +1336 -0
  455. data/vendor/local/share/doc/libxml2-2.9.2/html/w3c.png +0 -0
  456. data/vendor/local/share/doc/libxml2-2.9.2/html/writer.xml +2 -0
  457. data/vendor/local/share/doc/libxml2-2.9.2/html/xml.html +5995 -0
  458. data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.c +250 -0
  459. data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.res +5 -0
  460. data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.c +190 -0
  461. data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.res +30 -0
  462. data/vendor/local/share/fontconfig/conf.avail/10-autohint.conf +14 -0
  463. data/vendor/local/share/fontconfig/conf.avail/10-no-sub-pixel.conf +14 -0
  464. data/vendor/local/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf +81 -0
  465. data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf +14 -0
  466. data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf +14 -0
  467. data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf +14 -0
  468. data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf +14 -0
  469. data/vendor/local/share/fontconfig/conf.avail/10-unhinted.conf +14 -0
  470. data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-default.conf +16 -0
  471. data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf +16 -0
  472. data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-light.conf +16 -0
  473. data/vendor/local/share/fontconfig/conf.avail/20-unhint-small-vera.conf +48 -0
  474. data/vendor/local/share/fontconfig/conf.avail/25-unhint-nonlatin.conf +128 -0
  475. data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +546 -0
  476. data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +24 -0
  477. data/vendor/local/share/fontconfig/conf.avail/40-nonlatin.conf +231 -0
  478. data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +189 -0
  479. data/vendor/local/share/fontconfig/conf.avail/49-sansserif.conf +21 -0
  480. data/vendor/local/share/fontconfig/conf.avail/50-user.conf +15 -0
  481. data/vendor/local/share/fontconfig/conf.avail/51-local.conf +6 -0
  482. data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +70 -0
  483. data/vendor/local/share/fontconfig/conf.avail/65-fonts-persian.conf +419 -0
  484. data/vendor/local/share/fontconfig/conf.avail/65-khmer.conf +16 -0
  485. data/vendor/local/share/fontconfig/conf.avail/65-nonlatin.conf +196 -0
  486. data/vendor/local/share/fontconfig/conf.avail/69-unifont.conf +28 -0
  487. data/vendor/local/share/fontconfig/conf.avail/70-no-bitmaps.conf +12 -0
  488. data/vendor/local/share/fontconfig/conf.avail/70-yes-bitmaps.conf +12 -0
  489. data/vendor/local/share/fontconfig/conf.avail/80-delicious.conf +19 -0
  490. data/vendor/local/share/fontconfig/conf.avail/90-synthetic.conf +64 -0
  491. data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +122 -0
  492. data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +53 -0
  493. data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +123 -0
  494. data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +121 -0
  495. data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +117 -0
  496. data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +75 -0
  497. data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +120 -0
  498. data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +92 -0
  499. data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +93 -0
  500. data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +397 -0
  501. data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +428 -0
  502. data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +452 -0
  503. data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +342 -0
  504. data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +315 -0
  505. data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1194 -0
  506. data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +577 -0
  507. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +129 -0
  508. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +197 -0
  509. data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +600 -0
  510. data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +226 -0
  511. data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +810 -0
  512. data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +302 -0
  513. data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +360 -0
  514. data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +394 -0
  515. data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +156 -0
  516. data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +677 -0
  517. data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +342 -0
  518. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +326 -0
  519. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +280 -0
  520. data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +527 -0
  521. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +535 -0
  522. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +170 -0
  523. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +636 -0
  524. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +380 -0
  525. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +653 -0
  526. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +559 -0
  527. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +2231 -0
  528. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +956 -0
  529. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1637 -0
  530. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2695 -0
  531. data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +53 -0
  532. data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +53 -0
  533. data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +44 -0
  534. data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +74 -0
  535. data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +1138 -0
  536. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +747 -0
  537. data/vendor/local/share/gtk-doc/html/cairo/home.png +0 -0
  538. data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +177 -0
  539. data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +193 -0
  540. data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +179 -0
  541. data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +123 -0
  542. data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +107 -0
  543. data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +128 -0
  544. data/vendor/local/share/gtk-doc/html/cairo/index-all.html +1122 -0
  545. data/vendor/local/share/gtk-doc/html/cairo/index.html +157 -0
  546. data/vendor/local/share/gtk-doc/html/cairo/index.sgml +833 -0
  547. data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +73 -0
  548. data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
  549. data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
  550. data/vendor/local/share/gtk-doc/html/cairo/style.css +266 -0
  551. data/vendor/local/share/gtk-doc/html/cairo/up.png +0 -0
  552. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  553. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  554. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  555. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  556. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  557. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
  558. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  559. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  560. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  561. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  562. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  563. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  564. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  565. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
  566. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
  567. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  568. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  569. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  570. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  571. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
  572. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  573. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
  574. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
  575. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  576. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  577. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  578. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  579. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  580. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1597 -0
  581. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  582. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  583. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  584. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  585. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
  586. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  587. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +953 -0
  588. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  589. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  590. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  591. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
  592. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  593. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
  594. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
  595. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  596. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  597. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  598. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +292 -0
  599. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
  600. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +542 -0
  601. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  602. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  603. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3573 -0
  604. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  605. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  606. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  607. data/vendor/local/share/license/cairo/AUTHORS +115 -0
  608. data/vendor/local/share/license/cairo/COPYING +33 -0
  609. data/vendor/local/share/license/cairo/COPYING-LGPL-2.1 +510 -0
  610. data/vendor/local/share/license/cairo/COPYING-MPL-1.1 +470 -0
  611. data/vendor/local/share/license/cairo/README +204 -0
  612. data/vendor/local/share/license/cairo/README.win32 +66 -0
  613. data/vendor/local/share/license/fontconfig/AUTHORS +3 -0
  614. data/vendor/local/share/license/fontconfig/COPYING +28 -0
  615. data/vendor/local/share/license/fontconfig/README +1484 -0
  616. data/vendor/local/share/license/freetype/README +83 -0
  617. data/vendor/local/share/license/freetype/README.git +50 -0
  618. data/vendor/local/share/license/libpng/README +215 -0
  619. data/vendor/local/share/license/libxml2/AUTHORS +5 -0
  620. data/vendor/local/share/license/libxml2/COPYING +23 -0
  621. data/vendor/local/share/license/libxml2/README +39 -0
  622. data/vendor/local/share/license/libxml2/README.tests +39 -0
  623. data/vendor/local/share/license/pixman/AUTHORS +0 -0
  624. data/vendor/local/share/license/pixman/COPYING +42 -0
  625. data/vendor/local/share/license/pixman/README +116 -0
  626. data/vendor/local/share/license/zlib/README +115 -0
  627. data/vendor/local/share/man/man1/freetype-config.1 +108 -0
  628. data/vendor/local/share/man/man1/xml2-config.1 +30 -0
  629. data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
  630. data/vendor/local/share/man/man1/xmllint.1 +647 -0
  631. data/vendor/local/share/man/man3/libpng.3 +6217 -0
  632. data/vendor/local/share/man/man3/libpngpf.3 +18 -0
  633. data/vendor/local/share/man/man3/libxml.3 +71 -0
  634. data/vendor/local/share/man/man5/png.5 +74 -0
  635. data/vendor/local/share/xml/fontconfig/fonts.dtd +233 -0
  636. metadata +774 -0
@@ -0,0 +1,644 @@
1
+
2
+ /* pngconf.h - machine configurable file for libpng
3
+ *
4
+ * libpng version 1.6.14 - October 23, 2014
5
+ *
6
+ * Copyright (c) 1998-2014 Glenn Randers-Pehrson
7
+ * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8
+ * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
9
+ *
10
+ * This code is released under the libpng license.
11
+ * For conditions of distribution and use, see the disclaimer
12
+ * and license in png.h
13
+ *
14
+ */
15
+
16
+ /* Any machine specific code is near the front of this file, so if you
17
+ * are configuring libpng for a machine, you may want to read the section
18
+ * starting here down to where it starts to typedef png_color, png_text,
19
+ * and png_info.
20
+ */
21
+
22
+ #ifndef PNGCONF_H
23
+ #define PNGCONF_H
24
+
25
+ /* To do: Do all of this in scripts/pnglibconf.dfa */
26
+ #ifdef PNG_SAFE_LIMITS_SUPPORTED
27
+ # ifdef PNG_USER_WIDTH_MAX
28
+ # undef PNG_USER_WIDTH_MAX
29
+ # define PNG_USER_WIDTH_MAX 1000000L
30
+ # endif
31
+ # ifdef PNG_USER_HEIGHT_MAX
32
+ # undef PNG_USER_HEIGHT_MAX
33
+ # define PNG_USER_HEIGHT_MAX 1000000L
34
+ # endif
35
+ # ifdef PNG_USER_CHUNK_MALLOC_MAX
36
+ # undef PNG_USER_CHUNK_MALLOC_MAX
37
+ # define PNG_USER_CHUNK_MALLOC_MAX 4000000L
38
+ # endif
39
+ # ifdef PNG_USER_CHUNK_CACHE_MAX
40
+ # undef PNG_USER_CHUNK_CACHE_MAX
41
+ # define PNG_USER_CHUNK_CACHE_MAX 128
42
+ # endif
43
+ #endif
44
+
45
+ #ifndef PNG_BUILDING_SYMBOL_TABLE /* else includes may cause problems */
46
+
47
+ /* From libpng 1.6.0 libpng requires an ANSI X3.159-1989 ("ISOC90") compliant C
48
+ * compiler for correct compilation. The following header files are required by
49
+ * the standard. If your compiler doesn't provide these header files, or they
50
+ * do not match the standard, you will need to provide/improve them.
51
+ */
52
+ #include <limits.h>
53
+ #include <stddef.h>
54
+
55
+ /* Library header files. These header files are all defined by ISOC90; libpng
56
+ * expects conformant implementations, however, an ISOC90 conformant system need
57
+ * not provide these header files if the functionality cannot be implemented.
58
+ * In this case it will be necessary to disable the relevant parts of libpng in
59
+ * the build of pnglibconf.h.
60
+ *
61
+ * Prior to 1.6.0 string.h was included here; the API changes in 1.6.0 to not
62
+ * include this unnecessary header file.
63
+ */
64
+
65
+ #ifdef PNG_STDIO_SUPPORTED
66
+ /* Required for the definition of FILE: */
67
+ # include <stdio.h>
68
+ #endif
69
+
70
+ #ifdef PNG_SETJMP_SUPPORTED
71
+ /* Required for the definition of jmp_buf and the declaration of longjmp: */
72
+ # include <setjmp.h>
73
+ #endif
74
+
75
+ #ifdef PNG_CONVERT_tIME_SUPPORTED
76
+ /* Required for struct tm: */
77
+ # include <time.h>
78
+ #endif
79
+
80
+ #endif /* PNG_BUILDING_SYMBOL_TABLE */
81
+
82
+ /* Prior to 1.6.0 it was possible to turn off 'const' in declarations using
83
+ * PNG_NO_CONST; this is no longer supported except for data declarations which
84
+ * apparently still cause problems in 2011 on some compilers.
85
+ */
86
+ #define PNG_CONST const /* backward compatibility only */
87
+
88
+ /* This controls optimization of the reading of 16 and 32 bit values
89
+ * from PNG files. It can be set on a per-app-file basis - it
90
+ * just changes whether a macro is used when the function is called.
91
+ * The library builder sets the default; if read functions are not
92
+ * built into the library the macro implementation is forced on.
93
+ */
94
+ #ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED
95
+ # define PNG_USE_READ_MACROS
96
+ #endif
97
+ #if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS)
98
+ # if PNG_DEFAULT_READ_MACROS
99
+ # define PNG_USE_READ_MACROS
100
+ # endif
101
+ #endif
102
+
103
+ /* COMPILER SPECIFIC OPTIONS.
104
+ *
105
+ * These options are provided so that a variety of difficult compilers
106
+ * can be used. Some are fixed at build time (e.g. PNG_API_RULE
107
+ * below) but still have compiler specific implementations, others
108
+ * may be changed on a per-file basis when compiling against libpng.
109
+ */
110
+
111
+ /* The PNGARG macro was used in versions of libpng prior to 1.6.0 to protect
112
+ * against legacy (pre ISOC90) compilers that did not understand function
113
+ * prototypes. It is not required for modern C compilers.
114
+ */
115
+ #ifndef PNGARG
116
+ # define PNGARG(arglist) arglist
117
+ #endif
118
+
119
+ /* Function calling conventions.
120
+ * =============================
121
+ * Normally it is not necessary to specify to the compiler how to call
122
+ * a function - it just does it - however on x86 systems derived from
123
+ * Microsoft and Borland C compilers ('IBM PC', 'DOS', 'Windows' systems
124
+ * and some others) there are multiple ways to call a function and the
125
+ * default can be changed on the compiler command line. For this reason
126
+ * libpng specifies the calling convention of every exported function and
127
+ * every function called via a user supplied function pointer. This is
128
+ * done in this file by defining the following macros:
129
+ *
130
+ * PNGAPI Calling convention for exported functions.
131
+ * PNGCBAPI Calling convention for user provided (callback) functions.
132
+ * PNGCAPI Calling convention used by the ANSI-C library (required
133
+ * for longjmp callbacks and sometimes used internally to
134
+ * specify the calling convention for zlib).
135
+ *
136
+ * These macros should never be overridden. If it is necessary to
137
+ * change calling convention in a private build this can be done
138
+ * by setting PNG_API_RULE (which defaults to 0) to one of the values
139
+ * below to select the correct 'API' variants.
140
+ *
141
+ * PNG_API_RULE=0 Use PNGCAPI - the 'C' calling convention - throughout.
142
+ * This is correct in every known environment.
143
+ * PNG_API_RULE=1 Use the operating system convention for PNGAPI and
144
+ * the 'C' calling convention (from PNGCAPI) for
145
+ * callbacks (PNGCBAPI). This is no longer required
146
+ * in any known environment - if it has to be used
147
+ * please post an explanation of the problem to the
148
+ * libpng mailing list.
149
+ *
150
+ * These cases only differ if the operating system does not use the C
151
+ * calling convention, at present this just means the above cases
152
+ * (x86 DOS/Windows sytems) and, even then, this does not apply to
153
+ * Cygwin running on those systems.
154
+ *
155
+ * Note that the value must be defined in pnglibconf.h so that what
156
+ * the application uses to call the library matches the conventions
157
+ * set when building the library.
158
+ */
159
+
160
+ /* Symbol export
161
+ * =============
162
+ * When building a shared library it is almost always necessary to tell
163
+ * the compiler which symbols to export. The png.h macro 'PNG_EXPORT'
164
+ * is used to mark the symbols. On some systems these symbols can be
165
+ * extracted at link time and need no special processing by the compiler,
166
+ * on other systems the symbols are flagged by the compiler and just
167
+ * the declaration requires a special tag applied (unfortunately) in a
168
+ * compiler dependent way. Some systems can do either.
169
+ *
170
+ * A small number of older systems also require a symbol from a DLL to
171
+ * be flagged to the program that calls it. This is a problem because
172
+ * we do not know in the header file included by application code that
173
+ * the symbol will come from a shared library, as opposed to a statically
174
+ * linked one. For this reason the application must tell us by setting
175
+ * the magic flag PNG_USE_DLL to turn on the special processing before
176
+ * it includes png.h.
177
+ *
178
+ * Four additional macros are used to make this happen:
179
+ *
180
+ * PNG_IMPEXP The magic (if any) to cause a symbol to be exported from
181
+ * the build or imported if PNG_USE_DLL is set - compiler
182
+ * and system specific.
183
+ *
184
+ * PNG_EXPORT_TYPE(type) A macro that pre or appends PNG_IMPEXP to
185
+ * 'type', compiler specific.
186
+ *
187
+ * PNG_DLL_EXPORT Set to the magic to use during a libpng build to
188
+ * make a symbol exported from the DLL. Not used in the
189
+ * public header files; see pngpriv.h for how it is used
190
+ * in the libpng build.
191
+ *
192
+ * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come
193
+ * from a DLL - used to define PNG_IMPEXP when
194
+ * PNG_USE_DLL is set.
195
+ */
196
+
197
+ /* System specific discovery.
198
+ * ==========================
199
+ * This code is used at build time to find PNG_IMPEXP, the API settings
200
+ * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL
201
+ * import processing is possible. On Windows systems it also sets
202
+ * compiler-specific macros to the values required to change the calling
203
+ * conventions of the various functions.
204
+ */
205
+ #if defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\
206
+ defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
207
+ /* Windows system (DOS doesn't support DLLs). Includes builds under Cygwin or
208
+ * MinGW on any architecture currently supported by Windows. Also includes
209
+ * Watcom builds but these need special treatment because they are not
210
+ * compatible with GCC or Visual C because of different calling conventions.
211
+ */
212
+ # if PNG_API_RULE == 2
213
+ /* If this line results in an error, either because __watcall is not
214
+ * understood or because of a redefine just below you cannot use *this*
215
+ * build of the library with the compiler you are using. *This* build was
216
+ * build using Watcom and applications must also be built using Watcom!
217
+ */
218
+ # define PNGCAPI __watcall
219
+ # endif
220
+
221
+ # if defined(__GNUC__) || (defined(_MSC_VER) && (_MSC_VER >= 800))
222
+ # define PNGCAPI __cdecl
223
+ # if PNG_API_RULE == 1
224
+ /* If this line results in an error __stdcall is not understood and
225
+ * PNG_API_RULE should not have been set to '1'.
226
+ */
227
+ # define PNGAPI __stdcall
228
+ # endif
229
+ # else
230
+ /* An older compiler, or one not detected (erroneously) above,
231
+ * if necessary override on the command line to get the correct
232
+ * variants for the compiler.
233
+ */
234
+ # ifndef PNGCAPI
235
+ # define PNGCAPI _cdecl
236
+ # endif
237
+ # if PNG_API_RULE == 1 && !defined(PNGAPI)
238
+ # define PNGAPI _stdcall
239
+ # endif
240
+ # endif /* compiler/api */
241
+
242
+ /* NOTE: PNGCBAPI always defaults to PNGCAPI. */
243
+
244
+ # if defined(PNGAPI) && !defined(PNG_USER_PRIVATEBUILD)
245
+ # error "PNG_USER_PRIVATEBUILD must be defined if PNGAPI is changed"
246
+ # endif
247
+
248
+ # if (defined(_MSC_VER) && _MSC_VER < 800) ||\
249
+ (defined(__BORLANDC__) && __BORLANDC__ < 0x500)
250
+ /* older Borland and MSC
251
+ * compilers used '__export' and required this to be after
252
+ * the type.
253
+ */
254
+ # ifndef PNG_EXPORT_TYPE
255
+ # define PNG_EXPORT_TYPE(type) type PNG_IMPEXP
256
+ # endif
257
+ # define PNG_DLL_EXPORT __export
258
+ # else /* newer compiler */
259
+ # define PNG_DLL_EXPORT __declspec(dllexport)
260
+ # ifndef PNG_DLL_IMPORT
261
+ # define PNG_DLL_IMPORT __declspec(dllimport)
262
+ # endif
263
+ # endif /* compiler */
264
+
265
+ #else /* !Windows */
266
+ # if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__)
267
+ # define PNGAPI _System
268
+ # else /* !Windows/x86 && !OS/2 */
269
+ /* Use the defaults, or define PNG*API on the command line (but
270
+ * this will have to be done for every compile!)
271
+ */
272
+ # endif /* other system, !OS/2 */
273
+ #endif /* !Windows/x86 */
274
+
275
+ /* Now do all the defaulting . */
276
+ #ifndef PNGCAPI
277
+ # define PNGCAPI
278
+ #endif
279
+ #ifndef PNGCBAPI
280
+ # define PNGCBAPI PNGCAPI
281
+ #endif
282
+ #ifndef PNGAPI
283
+ # define PNGAPI PNGCAPI
284
+ #endif
285
+
286
+ /* PNG_IMPEXP may be set on the compilation system command line or (if not set)
287
+ * then in an internal header file when building the library, otherwise (when
288
+ * using the library) it is set here.
289
+ */
290
+ #ifndef PNG_IMPEXP
291
+ # if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT)
292
+ /* This forces use of a DLL, disallowing static linking */
293
+ # define PNG_IMPEXP PNG_DLL_IMPORT
294
+ # endif
295
+
296
+ # ifndef PNG_IMPEXP
297
+ # define PNG_IMPEXP
298
+ # endif
299
+ #endif
300
+
301
+ /* In 1.5.2 the definition of PNG_FUNCTION has been changed to always treat
302
+ * 'attributes' as a storage class - the attributes go at the start of the
303
+ * function definition, and attributes are always appended regardless of the
304
+ * compiler. This considerably simplifies these macros but may cause problems
305
+ * if any compilers both need function attributes and fail to handle them as
306
+ * a storage class (this is unlikely.)
307
+ */
308
+ #ifndef PNG_FUNCTION
309
+ # define PNG_FUNCTION(type, name, args, attributes) attributes type name args
310
+ #endif
311
+
312
+ #ifndef PNG_EXPORT_TYPE
313
+ # define PNG_EXPORT_TYPE(type) PNG_IMPEXP type
314
+ #endif
315
+
316
+ /* The ordinal value is only relevant when preprocessing png.h for symbol
317
+ * table entries, so we discard it here. See the .dfn files in the
318
+ * scripts directory.
319
+ */
320
+ #ifndef PNG_EXPORTA
321
+
322
+ # define PNG_EXPORTA(ordinal, type, name, args, attributes)\
323
+ PNG_FUNCTION(PNG_EXPORT_TYPE(type),(PNGAPI name),PNGARG(args), \
324
+ extern attributes)
325
+ #endif
326
+
327
+ /* ANSI-C (C90) does not permit a macro to be invoked with an empty argument,
328
+ * so make something non-empty to satisfy the requirement:
329
+ */
330
+ #define PNG_EMPTY /*empty list*/
331
+
332
+ #define PNG_EXPORT(ordinal, type, name, args)\
333
+ PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY)
334
+
335
+ /* Use PNG_REMOVED to comment out a removed interface. */
336
+ #ifndef PNG_REMOVED
337
+ # define PNG_REMOVED(ordinal, type, name, args, attributes)
338
+ #endif
339
+
340
+ #ifndef PNG_CALLBACK
341
+ # define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args)
342
+ #endif
343
+
344
+ /* Support for compiler specific function attributes. These are used
345
+ * so that where compiler support is available incorrect use of API
346
+ * functions in png.h will generate compiler warnings.
347
+ *
348
+ * Added at libpng-1.2.41.
349
+ */
350
+
351
+ #ifndef PNG_NO_PEDANTIC_WARNINGS
352
+ # ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED
353
+ # define PNG_PEDANTIC_WARNINGS_SUPPORTED
354
+ # endif
355
+ #endif
356
+
357
+ #ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED
358
+ /* Support for compiler specific function attributes. These are used
359
+ * so that where compiler support is available, incorrect use of API
360
+ * functions in png.h will generate compiler warnings. Added at libpng
361
+ * version 1.2.41. Disabling these removes the warnings but may also produce
362
+ * less efficient code.
363
+ */
364
+ # if defined(__clang__) && defined(__has_attribute)
365
+ /* Clang defines both __clang__ and __GNUC__. Check __clang__ first. */
366
+ # if !defined(PNG_USE_RESULT) && __has_attribute(__warn_unused_result__)
367
+ # define PNG_USE_RESULT __attribute__((__warn_unused_result__))
368
+ # endif
369
+ # if !defined(PNG_NORETURN) && __has_attribute(__noreturn__)
370
+ # define PNG_NORETURN __attribute__((__noreturn__))
371
+ # endif
372
+ # if !defined(PNG_ALLOCATED) && __has_attribute(__malloc__)
373
+ # define PNG_ALLOCATED __attribute__((__malloc__))
374
+ # endif
375
+ # if !defined(PNG_DEPRECATED) && __has_attribute(__deprecated__)
376
+ # define PNG_DEPRECATED __attribute__((__deprecated__))
377
+ # endif
378
+ # if !defined(PNG_PRIVATE)
379
+ # ifdef __has_extension
380
+ # if __has_extension(attribute_unavailable_with_message)
381
+ # define PNG_PRIVATE __attribute__((__unavailable__(\
382
+ "This function is not exported by libpng.")))
383
+ # endif
384
+ # endif
385
+ # endif
386
+ # ifndef PNG_RESTRICT
387
+ # define PNG_RESTRICT __restrict
388
+ # endif
389
+
390
+ # elif defined(__GNUC__)
391
+ # ifndef PNG_USE_RESULT
392
+ # define PNG_USE_RESULT __attribute__((__warn_unused_result__))
393
+ # endif
394
+ # ifndef PNG_NORETURN
395
+ # define PNG_NORETURN __attribute__((__noreturn__))
396
+ # endif
397
+ # if __GNUC__ >= 3
398
+ # ifndef PNG_ALLOCATED
399
+ # define PNG_ALLOCATED __attribute__((__malloc__))
400
+ # endif
401
+ # ifndef PNG_DEPRECATED
402
+ # define PNG_DEPRECATED __attribute__((__deprecated__))
403
+ # endif
404
+ # ifndef PNG_PRIVATE
405
+ # if 0 /* Doesn't work so we use deprecated instead*/
406
+ # define PNG_PRIVATE \
407
+ __attribute__((warning("This function is not exported by libpng.")))
408
+ # else
409
+ # define PNG_PRIVATE \
410
+ __attribute__((__deprecated__))
411
+ # endif
412
+ # endif
413
+ # if ((__GNUC__ > 3) || !defined(__GNUC_MINOR__) || (__GNUC_MINOR__ >= 1))
414
+ # ifndef PNG_RESTRICT
415
+ # define PNG_RESTRICT __restrict
416
+ # endif
417
+ # endif /* __GNUC__.__GNUC_MINOR__ > 3.0 */
418
+ # endif /* __GNUC__ >= 3 */
419
+
420
+ # elif defined(_MSC_VER) && (_MSC_VER >= 1300)
421
+ # ifndef PNG_USE_RESULT
422
+ # define PNG_USE_RESULT /* not supported */
423
+ # endif
424
+ # ifndef PNG_NORETURN
425
+ # define PNG_NORETURN __declspec(noreturn)
426
+ # endif
427
+ # ifndef PNG_ALLOCATED
428
+ # if (_MSC_VER >= 1400)
429
+ # define PNG_ALLOCATED __declspec(restrict)
430
+ # endif
431
+ # endif
432
+ # ifndef PNG_DEPRECATED
433
+ # define PNG_DEPRECATED __declspec(deprecated)
434
+ # endif
435
+ # ifndef PNG_PRIVATE
436
+ # define PNG_PRIVATE __declspec(deprecated)
437
+ # endif
438
+ # ifndef PNG_RESTRICT
439
+ # if (_MSC_VER >= 1400)
440
+ # define PNG_RESTRICT __restrict
441
+ # endif
442
+ # endif
443
+
444
+ # elif defined(__WATCOMC__)
445
+ # ifndef PNG_RESTRICT
446
+ # define PNG_RESTRICT __restrict
447
+ # endif
448
+ # endif
449
+ #endif /* PNG_PEDANTIC_WARNINGS */
450
+
451
+ #ifndef PNG_DEPRECATED
452
+ # define PNG_DEPRECATED /* Use of this function is deprecated */
453
+ #endif
454
+ #ifndef PNG_USE_RESULT
455
+ # define PNG_USE_RESULT /* The result of this function must be checked */
456
+ #endif
457
+ #ifndef PNG_NORETURN
458
+ # define PNG_NORETURN /* This function does not return */
459
+ #endif
460
+ #ifndef PNG_ALLOCATED
461
+ # define PNG_ALLOCATED /* The result of the function is new memory */
462
+ #endif
463
+ #ifndef PNG_PRIVATE
464
+ # define PNG_PRIVATE /* This is a private libpng function */
465
+ #endif
466
+ #ifndef PNG_RESTRICT
467
+ # define PNG_RESTRICT /* The C99 "restrict" feature */
468
+ #endif
469
+
470
+ #ifndef PNG_FP_EXPORT /* A floating point API. */
471
+ # ifdef PNG_FLOATING_POINT_SUPPORTED
472
+ # define PNG_FP_EXPORT(ordinal, type, name, args)\
473
+ PNG_EXPORT(ordinal, type, name, args);
474
+ # else /* No floating point APIs */
475
+ # define PNG_FP_EXPORT(ordinal, type, name, args)
476
+ # endif
477
+ #endif
478
+ #ifndef PNG_FIXED_EXPORT /* A fixed point API. */
479
+ # ifdef PNG_FIXED_POINT_SUPPORTED
480
+ # define PNG_FIXED_EXPORT(ordinal, type, name, args)\
481
+ PNG_EXPORT(ordinal, type, name, args);
482
+ # else /* No fixed point APIs */
483
+ # define PNG_FIXED_EXPORT(ordinal, type, name, args)
484
+ # endif
485
+ #endif
486
+
487
+ #ifndef PNG_BUILDING_SYMBOL_TABLE
488
+ /* Some typedefs to get us started. These should be safe on most of the common
489
+ * platforms.
490
+ *
491
+ * png_uint_32 and png_int_32 may, currently, be larger than required to hold a
492
+ * 32-bit value however this is not normally advisable.
493
+ *
494
+ * png_uint_16 and png_int_16 should always be two bytes in size - this is
495
+ * verified at library build time.
496
+ *
497
+ * png_byte must always be one byte in size.
498
+ *
499
+ * The checks below use constants from limits.h, as defined by the ISOC90
500
+ * standard.
501
+ */
502
+ #if CHAR_BIT == 8 && UCHAR_MAX == 255
503
+ typedef unsigned char png_byte;
504
+ #else
505
+ # error "libpng requires 8 bit bytes"
506
+ #endif
507
+
508
+ #if INT_MIN == -32768 && INT_MAX == 32767
509
+ typedef int png_int_16;
510
+ #elif SHRT_MIN == -32768 && SHRT_MAX == 32767
511
+ typedef short png_int_16;
512
+ #else
513
+ # error "libpng requires a signed 16 bit type"
514
+ #endif
515
+
516
+ #if UINT_MAX == 65535
517
+ typedef unsigned int png_uint_16;
518
+ #elif USHRT_MAX == 65535
519
+ typedef unsigned short png_uint_16;
520
+ #else
521
+ # error "libpng requires an unsigned 16 bit type"
522
+ #endif
523
+
524
+ #if INT_MIN < -2147483646 && INT_MAX > 2147483646
525
+ typedef int png_int_32;
526
+ #elif LONG_MIN < -2147483646 && LONG_MAX > 2147483646
527
+ typedef long int png_int_32;
528
+ #else
529
+ # error "libpng requires a signed 32 bit (or more) type"
530
+ #endif
531
+
532
+ #if UINT_MAX > 4294967294
533
+ typedef unsigned int png_uint_32;
534
+ #elif ULONG_MAX > 4294967294
535
+ typedef unsigned long int png_uint_32;
536
+ #else
537
+ # error "libpng requires an unsigned 32 bit (or more) type"
538
+ #endif
539
+
540
+ /* Prior to 1.6.0 it was possible to disable the use of size_t, 1.6.0, however,
541
+ * requires an ISOC90 compiler and relies on consistent behavior of sizeof.
542
+ */
543
+ typedef size_t png_size_t;
544
+ typedef ptrdiff_t png_ptrdiff_t;
545
+
546
+ /* libpng needs to know the maximum value of 'size_t' and this controls the
547
+ * definition of png_alloc_size_t, below. This maximum value of size_t limits
548
+ * but does not control the maximum allocations the library makes - there is
549
+ * direct application control of this through png_set_user_limits().
550
+ */
551
+ #ifndef PNG_SMALL_SIZE_T
552
+ /* Compiler specific tests for systems where size_t is known to be less than
553
+ * 32 bits (some of these systems may no longer work because of the lack of
554
+ * 'far' support; see above.)
555
+ */
556
+ # if (defined(__TURBOC__) && !defined(__FLAT__)) ||\
557
+ (defined(_MSC_VER) && defined(MAXSEG_64K))
558
+ # define PNG_SMALL_SIZE_T
559
+ # endif
560
+ #endif
561
+
562
+ /* png_alloc_size_t is guaranteed to be no smaller than png_size_t, and no
563
+ * smaller than png_uint_32. Casts from png_size_t or png_uint_32 to
564
+ * png_alloc_size_t are not necessary; in fact, it is recommended not to use
565
+ * them at all so that the compiler can complain when something turns out to be
566
+ * problematic.
567
+ *
568
+ * Casts in the other direction (from png_alloc_size_t to png_size_t or
569
+ * png_uint_32) should be explicitly applied; however, we do not expect to
570
+ * encounter practical situations that require such conversions.
571
+ *
572
+ * PNG_SMALL_SIZE_T must be defined if the maximum value of size_t is less than
573
+ * 4294967295 - i.e. less than the maximum value of png_uint_32.
574
+ */
575
+ #ifdef PNG_SMALL_SIZE_T
576
+ typedef png_uint_32 png_alloc_size_t;
577
+ #else
578
+ typedef png_size_t png_alloc_size_t;
579
+ #endif
580
+
581
+ /* Prior to 1.6.0 libpng offered limited support for Microsoft C compiler
582
+ * implementations of Intel CPU specific support of user-mode segmented address
583
+ * spaces, where 16-bit pointers address more than 65536 bytes of memory using
584
+ * separate 'segment' registers. The implementation requires two different
585
+ * types of pointer (only one of which includes the segment value.)
586
+ *
587
+ * If required this support is available in version 1.2 of libpng and may be
588
+ * available in versions through 1.5, although the correctness of the code has
589
+ * not been verified recently.
590
+ */
591
+
592
+ /* Typedef for floating-point numbers that are converted to fixed-point with a
593
+ * multiple of 100,000, e.g., gamma
594
+ */
595
+ typedef png_int_32 png_fixed_point;
596
+
597
+ /* Add typedefs for pointers */
598
+ typedef void * png_voidp;
599
+ typedef const void * png_const_voidp;
600
+ typedef png_byte * png_bytep;
601
+ typedef const png_byte * png_const_bytep;
602
+ typedef png_uint_32 * png_uint_32p;
603
+ typedef const png_uint_32 * png_const_uint_32p;
604
+ typedef png_int_32 * png_int_32p;
605
+ typedef const png_int_32 * png_const_int_32p;
606
+ typedef png_uint_16 * png_uint_16p;
607
+ typedef const png_uint_16 * png_const_uint_16p;
608
+ typedef png_int_16 * png_int_16p;
609
+ typedef const png_int_16 * png_const_int_16p;
610
+ typedef char * png_charp;
611
+ typedef const char * png_const_charp;
612
+ typedef png_fixed_point * png_fixed_point_p;
613
+ typedef const png_fixed_point * png_const_fixed_point_p;
614
+ typedef png_size_t * png_size_tp;
615
+ typedef const png_size_t * png_const_size_tp;
616
+
617
+ #ifdef PNG_STDIO_SUPPORTED
618
+ typedef FILE * png_FILE_p;
619
+ #endif
620
+
621
+ #ifdef PNG_FLOATING_POINT_SUPPORTED
622
+ typedef double * png_doublep;
623
+ typedef const double * png_const_doublep;
624
+ #endif
625
+
626
+ /* Pointers to pointers; i.e. arrays */
627
+ typedef png_byte * * png_bytepp;
628
+ typedef png_uint_32 * * png_uint_32pp;
629
+ typedef png_int_32 * * png_int_32pp;
630
+ typedef png_uint_16 * * png_uint_16pp;
631
+ typedef png_int_16 * * png_int_16pp;
632
+ typedef const char * * png_const_charpp;
633
+ typedef char * * png_charpp;
634
+ typedef png_fixed_point * * png_fixed_point_pp;
635
+ #ifdef PNG_FLOATING_POINT_SUPPORTED
636
+ typedef double * * png_doublepp;
637
+ #endif
638
+
639
+ /* Pointers to pointers to pointers; i.e., pointer to array */
640
+ typedef char * * * png_charppp;
641
+
642
+ #endif /* PNG_BUILDING_SYMBOL_TABLE */
643
+
644
+ #endif /* PNGCONF_H */