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,204 @@
1
+ Cairo - Multi-platform 2D graphics library
2
+ http://cairographics.org
3
+
4
+ What is cairo
5
+ =============
6
+ Cairo is a 2D graphics library with support for multiple output
7
+ devices. Currently supported output targets include the X Window
8
+ System (via both Xlib and XCB), quartz, win32, and image buffers,
9
+ as well as PDF, PostScript, and SVG file output. Experimental backends
10
+ include OpenGL, BeOS, OS/2, and DirectFB.
11
+
12
+ Cairo is designed to produce consistent output on all output media
13
+ while taking advantage of display hardware acceleration when available
14
+ (for example, through the X Render Extension).
15
+
16
+ The cairo API provides operations similar to the drawing operators of
17
+ PostScript and PDF. Operations in cairo include stroking and filling
18
+ cubic Bézier splines, transforming and compositing translucent images,
19
+ and antialiased text rendering. All drawing operations can be
20
+ transformed by any affine transformation (scale, rotation, shear,
21
+ etc.).
22
+
23
+ Cairo has been designed to let you draw anything you want in a modern
24
+ 2D graphical user interface. At the same time, the cairo API has been
25
+ designed to be as fun and easy to learn as possible. If you're not
26
+ having fun while programming with cairo, then we have failed
27
+ somewhere---let us know and we'll try to fix it next time around.
28
+
29
+ Cairo is free software and is available to be redistributed and/or
30
+ modified under the terms of either the GNU Lesser General Public
31
+ License (LGPL) version 2.1 or the Mozilla Public License (MPL) version
32
+ 1.1.
33
+
34
+ Where to get more information about cairo
35
+ =========================================
36
+ The primary source of information about cairo is:
37
+
38
+ http://cairographics.org/
39
+
40
+ The latest versions of cairo can always be found at:
41
+
42
+ http://cairographics.org/download
43
+
44
+ Documentation on using cairo and frequently-asked questions:
45
+
46
+ http://cairographics.org/documentation
47
+ http://cairographics.org/FAQ
48
+
49
+ Mailing lists for contacting cairo users and developers:
50
+
51
+ http://cairographics.org/lists
52
+
53
+ Roadmap and unscheduled things to do, (please feel free to help out):
54
+
55
+ http://cairographics.org/roadmap
56
+ http://cairographics.org/todo
57
+
58
+ Dependencies
59
+ ============
60
+ The set of libraries needed to compile cairo depends on which backends
61
+ are enabled when cairo is configured. So look at the list below to
62
+ determine which dependencies are needed for the backends of interest.
63
+
64
+ For the surface backends, we have both "supported" and "experimental"
65
+ backends. Further, the supported backends can be divided into the
66
+ "standard" backends which can be easily built on any platform, and the
67
+ "platform" backends which depend on some underlying platform-specific
68
+ system, (such as the X Window System or some other window system).
69
+
70
+ As an example, for a standard Linux build similar to what's shipped by
71
+ your distro, (with image, png, pdf, PostScript, svg, and xlib surface
72
+ backends, and the freetype font backend), the following sample commands
73
+ will install necessary dependencies:
74
+
75
+ Debian (and similar):
76
+
77
+ apt-get build-dep cairo
78
+
79
+ Fedora (and similar):
80
+
81
+ yum install libpng-devel zlib-devel libXrender-devel fontconfig-devel
82
+
83
+ Technically you probably don't need pixman from the distribution since
84
+ if you're manually compiling Cairo you probably want an updated pixman
85
+ as well. However, if you follow the default settings and install pixman
86
+ to /usr/local, your Cairo build should properly use it in preference to
87
+ the system pixman.
88
+
89
+
90
+ Supported, "standard" surface backends
91
+ ------------------------------------
92
+ image backend (required)
93
+ ------------------------
94
+ pixman >= 0.30.0 http://cairographics.org/releases
95
+
96
+ png support (can be left out if desired, but many
97
+ ----------- applications expect it to be present)
98
+ libpng http://www.libpng.org/pub/png/libpng.html
99
+
100
+ pdf backend
101
+ -----------
102
+ zlib http://www.gzip.org/zlib
103
+
104
+ postscript backend
105
+ ------------------
106
+ zlib http://www.gzip.org/zlib
107
+
108
+ svg backend
109
+ -----------
110
+ [none]
111
+
112
+ Supported, "platform" surface backends
113
+ -----------------------------------
114
+ xlib backend
115
+ ------------
116
+ X11 http://freedesktop.org/Software/xlibs
117
+
118
+ xlib-xrender backend
119
+ --------------------
120
+ Xrender >= 0.6 http://freedesktop.org/Software/xlibs
121
+
122
+ quartz backend
123
+ --------------
124
+ MacOS X >= 10.4 with Xcode >= 2.4
125
+
126
+ win32 backend
127
+ -------------
128
+ Microsoft Windows 2000 or newer[*].
129
+
130
+ xcb backend
131
+ -----------
132
+ XCB http://xcb.freedesktop.org
133
+
134
+ Font backends (required to have at least one)
135
+ ---------------------------------------------
136
+ freetype font backend
137
+ ---------------------
138
+ freetype >= 2.1.9 http://freetype.org
139
+ fontconfig http://fontconfig.org
140
+
141
+ quartz-font backend
142
+ -------------------
143
+ MacOS X >= 10.4 with Xcode >= 2.4
144
+
145
+ win32 font backend
146
+ ------------------
147
+ Microsoft Windows 2000 or newer[*].
148
+
149
+ [*] The Win32 backend should work on Windows 2000 and newer
150
+ (excluding Windows Me.) Most testing has been done on
151
+ Windows XP. While some portions of the code have been
152
+ adapted to work on older versions of Windows, considerable
153
+ work still needs to be done to get cairo running in those
154
+ environments.
155
+
156
+ Cairo can be compiled on Windows with either the gcc
157
+ toolchain (see http://www.mingw.org) or with Microsoft
158
+ Visual C++. If the gcc toolchain is used, the standard
159
+ build instructions using configure apply, (see INSTALL).
160
+ If Visual C++ is desired, GNU make is required and
161
+ Makefile.win32 can be used via 'make -f Makefile.win32'.
162
+ The compiler, include paths, and library paths must be set
163
+ up correctly in the environment.
164
+
165
+ MSVC versions earlier than 7.1 are known to miscompile
166
+ parts of cairo and pixman, and so should be avoided. MSVC
167
+ 7.1 or later, including the free Microsoft Visual Studio
168
+ Express editions, produce correct code.
169
+
170
+ Experimental surface backends
171
+ -----------------------------
172
+ beos backend
173
+ ------------
174
+ No dependencies in itself other than an installed BeOS system, but cairo
175
+ requires a font backend. See the freetype dependency list.
176
+
177
+ os2 backend
178
+ -----------
179
+ Cairo should run on any recent version of OS/2 or eComStation, but it
180
+ requires a font backend. See the freetype dependency list. Ready to use
181
+ packages and developer dependencies are available at Netlabs:
182
+ ftp://ftp.netlabs.org/pub/cairo
183
+
184
+ skia backend
185
+ ------------
186
+ Requires the skia library as of June 2014. Since skia is not
187
+ API stable, building against newer (or older) versions of skia
188
+ will probably fail.
189
+
190
+
191
+ Compiling
192
+ =========
193
+ See the INSTALL document for build instructions.
194
+
195
+
196
+ History
197
+ =======
198
+ Cairo was originally developed by Carl Worth <cworth@cworth.org> and
199
+ Keith Packard <keithp@keithp.com>. Many thanks are due to Lyle Ramshaw
200
+ without whose patient help our ignorance would be much more apparent.
201
+
202
+ Since the original development, many more people have contributed to
203
+ cairo. See the AUTHORS files for as complete a list as we've been able
204
+ to compile so far.
@@ -0,0 +1,66 @@
1
+ Building Cairo on Windows
2
+ =========================
3
+ There are two primary ways to build Cairo on Windows. You can use a
4
+ UNIX emulation based setup, such as Cygwin or MSYS, with the
5
+ conventional configure script shipped with Cairo releases. In this
6
+ configuration, you will build with GCC and (implicitly) libtool. In
7
+ the Cygwin case you end up with a DLL that depends on Cygwin and
8
+ should be used only from Cygwin applications. In the MSYS case you end
9
+ up with a "normal" Win32 DLL that can be used either from GCC- or
10
+ Microsoft Visual C++-compiled code. In theory, this technique is no
11
+ different than the ordinary build process for the Cairo library. In
12
+ practise there are lots of small details that can go wrong.
13
+
14
+ The second way is to use a GNU-compatible make, but build using
15
+ Microsoft's Visual C++ compiler to produce native libraries. This is
16
+ the setup this README.win32 is written for. Also the DLL produced this
17
+ way is usable either from GCC- or MSVC-compiled code.
18
+
19
+ Tools required
20
+ ==============
21
+ You will need GNU make, version 3.80 or later. Earlier versions or
22
+ other modern make implementations may work, but are not guaranteed to.
23
+
24
+ You will also need Microsoft Visual C++. Version 7 has been most
25
+ heavily tested, but other versions are likely to work fine.
26
+
27
+ Libraries required
28
+ ==================
29
+ Cairo requires a compatible version of the pixman library. Full build
30
+ instructions are beyond the scope of this document; however, using the
31
+ same tools, it should be possible to build pixman simply by entering
32
+ the pixman/src directory and typing:
33
+
34
+ make -f Makefile.win32 CFG=release
35
+
36
+ Depending on your feature set, you may also need zlib and libpng.
37
+
38
+ Building
39
+ ========
40
+ There are a few files that you will need to edit. First, you must
41
+ determine which features will be built. Edit
42
+ build/Makefile.win32.features and set the features as desired. Note
43
+ that most features have external dependencies; specifically,
44
+ CAIRO_HAS_PNG_FUNCTIONS requires libpng to be present, and
45
+ CAIRO_HAS_PS_SURFACE and CAIRO_HAS_PDF_SURFACE both require zlib.
46
+
47
+ To ensure that the compiler can find all dependencies, you may need to
48
+ edit build/Makefile.win32.common. In particular, ensure that
49
+ PIXMAN_CFLAGS contains a -I parameter pointing to the location of
50
+ your pixman header files and that PIXMAN_LIBS points to the actual
51
+ location of your pixman-1.lib file. You may also need to edit the
52
+ various occurrences of CAIRO_LIBS to point to other libraries
53
+ correctly. Note also that if you wish to link statically with zlib,
54
+ you should replace zdll.lib with zlib.lib.
55
+
56
+ Finally, from the top Cairo directory, type:
57
+
58
+ make -f Makefile.win32 CFG=release
59
+
60
+ If this command succeeds, you will end up with src/release/cairo.dll.
61
+ To successfully use Cairo from your own programs, you will probably
62
+ want to move this file to some central location. You will also
63
+ probably want to copy the Cairo header files. These should be placed
64
+ in a cairo subdirectory (for instance, c:/code/common/include/cairo).
65
+ The exact set to copy depends on your features and is reported to you
66
+ at the end of the build.
@@ -0,0 +1,3 @@
1
+ Keith Packard <keithp@keithp.com>
2
+ Patrick Lam <plam@mit.edu>
3
+
@@ -0,0 +1,28 @@
1
+ fontconfig/COPYING
2
+
3
+ Copyright © 2000,2001,2002,2003,2004,2006,2007 Keith Packard
4
+ Copyright © 2005 Patrick Lam
5
+ Copyright © 2009 Roozbeh Pournader
6
+ Copyright © 2008,2009 Red Hat, Inc.
7
+ Copyright © 2008 Danilo Šegan
8
+ Copyright © 2012 Google, Inc.
9
+
10
+
11
+ Permission to use, copy, modify, distribute, and sell this software and its
12
+ documentation for any purpose is hereby granted without fee, provided that
13
+ the above copyright notice appear in all copies and that both that
14
+ copyright notice and this permission notice appear in supporting
15
+ documentation, and that the name of the author(s) not be used in
16
+ advertising or publicity pertaining to distribution of the software without
17
+ specific, written prior permission. The authors make no
18
+ representations about the suitability of this software for any purpose. It
19
+ is provided "as is" without express or implied warranty.
20
+
21
+ THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
22
+ INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
23
+ EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
24
+ CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
25
+ DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
26
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
27
+ PERFORMANCE OF THIS SOFTWARE.
28
+
@@ -0,0 +1,1484 @@
1
+ Fontconfig
2
+ Font configuration and customization library
3
+ Version 2.11.1
4
+ 2014-03-24
5
+
6
+
7
+ Check INSTALL for compilation and installation instructions.
8
+ Report bugs to https://bugs.freedesktop.org in the fontconfig module.
9
+
10
+ 2.11.1
11
+
12
+ Akira TAGOH (31):
13
+ do not build test-migration for Win32
14
+ Fix build issue on Debian/kFreeBSD 7.0
15
+ Update ax_pthread.m4 to the latest version
16
+ Fix the dynamic loading issue on NetBSD
17
+ Use stat() if there are no d_type in struct dirent
18
+ Fix a build issue on Solaris 10
19
+ Change the default weight on match to FC_WEIGHT_NORMAL
20
+ Warn if no <test> nor <edit> elements in <match>
21
+ Correct DTD
22
+ Re-scan font directories only when it contains subdirs
23
+ Fix typo
24
+ Bug 72086 - Check for gperf in autogen.sh
25
+ Simplify to validate the availability of posix_fadvise
26
+ Simplify to validate the availability of scandir
27
+ Fix a typo
28
+ Fix a build issue on platforms where doesn't support readlink()
29
+ Improve the performance issue on rescanning directories
30
+ Bug 73686 - confdir is not set correctly in fontconfig.pc
31
+ Update zh_hk.orth
32
+ clean up the unused files
33
+ Add missing license headers
34
+ Update the use of autotools' macro
35
+ Fix a crash issue when empty strings are set to the BDF properties
36
+ Add a doc for FcDirCacheRescan
37
+ Add missing #include <sys/statvfs.h> in fcstat.c
38
+ Fix incompatible API on AIX with random_r and initstate_r
39
+ Fallback to lstat() in case the filesystem doesn't support d_type in struct dirent
40
+ Update doc to include the version info of `since when'
41
+ Bug 73291 - poppler does not show fl ligature
42
+ Add README describes the criteria to add/modify the orthography files
43
+ Fix autoconf warning, warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS
44
+
45
+ Alan Coopersmith (3):
46
+ Leave room for null terminators in arrays
47
+ Avoid memory leak when NULL path passed to FcStrBuildFilename
48
+ Avoid null pointer dereference in FcNameParse if malloc fails
49
+
50
+ Behdad Esfahbod (1):
51
+ Bug 72380 - Never drop first font when trimming
52
+
53
+ Frederic Crozat (2):
54
+ Fix inversion between Tinos and Cousine in the comment
55
+ Add metric aliases for additional Google ChromeOS fonts
56
+
57
+ Jehan (1):
58
+ Defaulting <cachedir> to LOCAL_APPDATA_FONTCONFIG_CACHE for Win32 build
59
+
60
+ Ross Burton (1):
61
+ fc-cache: --sysroot option takes an argument
62
+
63
+ 2.11
64
+
65
+ Akira TAGOH (15):
66
+ Do not create a config dir for migration when no config files nor dirs
67
+ Add a test case of the migration for config place
68
+ Fix memory leaks in FcFreeTypeQueryFace
69
+ Bug 68955 - Deprecate / remove FC_RASTERIZER
70
+ Copy all values from the font to the pattern if the pattern doesn't have the element
71
+ Fix a crash when FcPattern is set to null on FcFontSetList() and FcFontList()
72
+ Add the description of -q option to the man page
73
+ avoid reading config.h twice
74
+ clean up
75
+ Add the relative path for <include> to fonts.conf if the parent path is same to fonts.conf
76
+ Workaround the race condition issue on updating cache
77
+ exit with the error code when FcNameParse() failed
78
+ Add missing doc for FcStrListFirst and fix a typo
79
+ Bump libtool revision
80
+ Update CaseFolding.txt to Unicode 6.3
81
+
82
+ Jan Alexander Steffens (heftig) (1):
83
+ Further changes to 30-metric-aliases.conf
84
+
85
+ W. Trevor King (1):
86
+ doc/fccharset.fncs: Describe the map format in more detail
87
+
88
+ 2.10.95 (2.11 RC5)
89
+
90
+ Akira TAGOH (2):
91
+ Fix a typo
92
+ Fix a crash
93
+
94
+ 2.10.94 (2.11 RC4)
95
+
96
+ Akira TAGOH (25):
97
+ Bug 64906 - FcNameParse() should ignore leading whitespace in parameters
98
+ Fix a comparison of constant warning with clang
99
+ Fix a shift count overflow on 32bit box
100
+ Fix a incompatible pointer warning on NetBSD
101
+ Add FcTypeUnknown to FcType to avoid comparison of constant -1
102
+ Fix the behavior of intermixed tests end edits in match
103
+ Ignore scandir() check on mingw
104
+ Use INT_MAX instead of unreliable hardcoding value
105
+ Add FC_UNUSED to FC_ASSERT_STATIC macro to avoid compiler warning
106
+ Rework to apply the intermixed test and edit elements in one-pass
107
+ trivial code optimization
108
+ Correct fontconfig.pc to add certain dependencies for build
109
+ Correct fontconfig.pc to add certain dependencies for static build
110
+ Fix wrong edit position
111
+ Bug 67809 - Invalid read/write with valgrind when assigning something twice
112
+ warn deprecated only when migration failed
113
+ Bug 67845 - Match on FC_SCALABLE
114
+ Bug 16818 - fontformat in match pattern is not respected?
115
+ Bug 68340 - More metric compat fonts
116
+ Bug 63399 - Add default aliases for Georgia, Garamond, Palatino Linotype, Trebuchet MS
117
+ Fix a typo
118
+ Fix a crash when non-builtin objects are edited
119
+ Fix a wrong edit position when 'kind' is different
120
+ Bug 68587 - copy qu.orth to quz.orth
121
+ Add quz.orth to Makefile.am
122
+
123
+ Behdad Esfahbod (2):
124
+ Minor
125
+ Fix assertion
126
+
127
+ 2.10.93 (2.11 RC3)
128
+
129
+ Akira TAGOH (10):
130
+ Bug 62980 - matching native fonts with even :lang=en
131
+ Ensure closing fp on error
132
+ Obtain fonts data via FT_Face instead of opening a file directly
133
+ Revert the previous change and rework to not export freetype API outside fcfreetype.c
134
+ documented FC_HASH and FC_POSTSCRIPT_NAME
135
+ Bug 63329 - make check fails: .. contents:: :depth: 2
136
+ Use the glob matching for filename
137
+ Bug 63452 - conf.d/README outdated
138
+ Fix missing OSAtomicCompareAndSwapPtrBarrier() on Mac OS X 10.4
139
+ Bug 63922 - FcFreeTypeQueryFace fails on postscripts fonts loaded from memory
140
+
141
+ Sebastian Freundt (1):
142
+ build-chain, replace INCLUDES directive by AM_CPPFLAGS
143
+
144
+ 2.10.92 (2.11 RC2)
145
+
146
+ Akira TAGOH (33):
147
+ Fix the build fail on MinGW
148
+ Bug 50497 - RFE: Add OpenType feature tags support
149
+ Improve FcGetPrgname() to work on BSD
150
+ Better fix for 2fe5ddfd
151
+ Add missing file descriptor to F_DUPFD_CLOEXEC
152
+ Fix mkstemp absence for some platform
153
+ Fix installation on MinGW32
154
+ Add another approach to FC_PRGNAME for Solaris 10 or before
155
+ remove the unnecessary code
156
+ Bug 59385 - Do the right thing for intermixed edit and test elements
157
+ Bug 23757 - Add mode="delete" to <edit>
158
+ Modernize configure.ac
159
+ Use AM_MISSING_PROG instead of hardcoding missing
160
+ Revert "test: Use SH_LOG_COMPILER and AM_TESTS_ENVIRONMENT"
161
+ Use AM_MISSING_PROG instead of hardcoding missing
162
+ Bug 50733 - Add font-file hash?
163
+ Bug 60312 - DIST_SUBDIRS should never appear in a conditional
164
+ Update _FcMatchers definition logic
165
+ Bump the cache version to 4
166
+ Add Culmus foundry to the vendor list
167
+ Bug 60748 - broken conf.d/10-autohint.conf and conf.d/10-unhinted.conf
168
+ Bug 60783 - Add Liberation Sans Narrow to 30-metric-aliases.conf
169
+ Fix a typo
170
+ Fix a crash when the object is non-builtin object
171
+ Fix broken sort order with FcFontSort()
172
+ Fix a memory leak
173
+ Bug 59456 - Adding a --sysroot like option to fc-cache
174
+ Do not copy FC_*LANG_OBJECT even if it's not available on the pattern
175
+ Fix a SIGSEGV on FcPatternGet* with NULL pattern
176
+ Bug 38737 - Wishlist: support FC_POSTSCRIPT_NAME
177
+ Minor cleanup
178
+ Bump libtool revision
179
+ Minor fix
180
+
181
+ Behdad Esfahbod (12):
182
+ Resepct $NOCONFIGURE
183
+ Ensure we find the uninstalled fontconfig header
184
+ Copy all values from pattern to font if the font doesn't have the element
185
+ Minor
186
+ Bug 59379 - FC_PRGNAME
187
+ Remove unused checks for common functions
188
+ Minor
189
+ Fix fc-cache crash caused by looking up NULL object incorrectly
190
+ Fix FC_PRGNAME default
191
+ Fix readlink failure
192
+ Accept digits as part of OpenType script tags
193
+ Fix crash with FcConfigSetCurrent(NULL)
194
+
195
+ Christoph J. Thompson (1):
196
+ Use the PKG_INSTALLDIR macro.
197
+
198
+ Colin Walters (1):
199
+ build: Only use PKG_INSTALLDIR if available
200
+
201
+ Quentin Glidic (2):
202
+ test: Use SH_LOG_COMPILER and AM_TESTS_ENVIRONMENT
203
+ Use LOG_COMPILER and AM_TESTS_ENVIRONMENT
204
+
205
+ 2.10.91 (2.11 RC1)
206
+
207
+ Akira TAGOH (19):
208
+ Fix a potability issue about stdint.h
209
+ Fix build issues on clean tree
210
+ Do not show the deprecation warning if it is a symlink
211
+ Fix a typo
212
+ Fix the wrong estimation for the memory usage information in fontconfig
213
+ Remove the duplicate null-check
214
+ Remove the dead code
215
+ clean up
216
+ Fix a typo that accessing to the out of array
217
+ Fix a memory leak
218
+ Check the system font to be initialized
219
+ Missing header file for _mkdir declaration
220
+ Clean up the unused variable
221
+ Bug 47705 - Using O_CLOEXEC
222
+ missing header file to declare _mkdir
223
+ Fix a build fail on mingw
224
+ Fix a typo in the manpages template
225
+ Bug 29312 - RFE: feature to indicate which characters are missing to satisfy the language support
226
+ Update the date in README properly
227
+
228
+ Behdad Esfahbod (73):
229
+ Fix typo
230
+ Parse matrices of expressions
231
+ Fix compiler warnings
232
+ Fix unused-parameter warnings
233
+ Fix more warnings
234
+ Fix sign-compare warnings
235
+ Fix warning
236
+ Fix more warnings
237
+ Fixup from 4f6767470f52b287a2923e7e6d8de5fae1993f67
238
+ Remove memory accounting and reporting
239
+ Allow target="font/pattern/default" in <name> elements
240
+ Don't warn if an unknown element is used in an expression
241
+ Unbreak build when FC_ARCHITECTURE is defined
242
+ Remove unneeded stuff
243
+ Enable fcarch assert checks even when FC_ARCHITECTURE is explicitly given
244
+ Make tests run on Windows
245
+ Initialize matrix during name parsing
246
+ Adjust docs for recent changes
247
+ Warn if <name target="font"> appears in <match target="pattern">
248
+ Make FC_DBG_OBJTYPES debug messages into warnings
249
+ Refuse to set value to unsupported types during config too
250
+ Add NULL check
251
+ Don't crash in FcPatternDestroy with NULL pattern
252
+ Don't crash in FcPatternFormat() with NULL pattern
253
+ Minor
254
+ Whitespace
255
+ Deprecate FcName(Un)RegisterObjectTypes / FcName(Un)RegisterConstants
256
+ Use a static perfect hash table for object-name lookup
257
+ Switch .gitignore to git.mk
258
+ Remove shared-str pool
259
+ Fix build stuff
260
+ Add build stuff for threadsafety primitives
261
+ Add thread-safety primitives
262
+ Make refcounts, patterns, charsets, strings, and FcLang thread-safe
263
+ Make FcGetDefaultLang and FcGetDefaultLangs thread-safe
264
+ Make FcInitDebug() idempotent
265
+ Make FcDefaultFini() threadsafe
266
+ Refactor; contain default config in fccfg.c
267
+ Minor
268
+ Make default-FcConfig threadsafe
269
+ Minor
270
+ Make FcCacheIsMmapSafe() threadsafe
271
+ Minor
272
+ Make cache refcounting threadsafe
273
+ Add a big cache lock
274
+ Make random-state initialization threadsafe
275
+ Make cache hash threadsafe
276
+ Make FcDirCacheDispose() threadsafe
277
+ Make fcobjs.c thread-safe
278
+ Warn about undefined/invalid attributes during config parsing
279
+ Fixup fcobjs.c
280
+ Remove FcSharedStr*
281
+ Fix compiler warnings
282
+ Minor
283
+ Fix build and warnings on win32
284
+ Use CC_FOR_BUILD to generate source files
285
+ Fix more warnings.
286
+ Trying to fix distcheck
287
+ Fix build around true/false
288
+ Work around Sun CPP
289
+ Really fix cross-compiling and building of tools this time
290
+ Second try to make Sun CPP happy
291
+ Ugh, add Tools.mk
292
+ Minor
293
+ Don't use blanks for fc-query
294
+ Remove FcInit() calls from tools
295
+ Add 10-scale-bitmap-fonts.conf and enable by default
296
+ Oops, add the actual file
297
+ Fix pthreads setup
298
+ Fix memory corruption!
299
+ Add pthread test
300
+ Add atomic ops for Solaris
301
+ Make linker happy
302
+
303
+ Jon TURNEY (1):
304
+ Fix build when srcdir != builddir
305
+
306
+ 2.10.2
307
+
308
+ Akira TAGOH (13):
309
+ Bug 53585 - Two highly-visible typos in src/fcxml.c
310
+ Fix for libtoolize's warnings
311
+ Bug 54138 - X_OK permission is invalid for win32 access(..) calls
312
+ Bug 52573 - patch required to build 2.10.x with oldish GNU C library headers
313
+ deal with warnings as errors for the previous change
314
+ Fix wrongly squashing for the network path on Win32.
315
+ Fix syntax errors in fonts.dtd.
316
+ autogen.sh: Add -I option to tell aclocal a place for external m4 files
317
+ Use automake variable instead of cleaning files in clean-local
318
+ Bug 56531 - autogen.sh fails due to missing 'm4' directory
319
+ Bug 57114 - regression on FcFontMatch with namelang
320
+ Update CaseFolding.txt to Unicode 6.2
321
+ Bug 57286 - Remove UnBatang and Baekmuk Batang from monospace in 65-nonlatin.conf
322
+
323
+ Behdad Esfahbod (1):
324
+ Fix N'ko orthography
325
+
326
+ Jeremy Huddleston Sequoia (1):
327
+ Remove _CONFIG_FIXUPS_H_ guards, so multiple includes of "config.h" result in the correct values
328
+
329
+ 2.10.1
330
+
331
+ Akira TAGOH (2):
332
+ Fix a typo in fontconfig.pc
333
+ Install config files first
334
+
335
+ 2.10.0
336
+
337
+ Akira TAGOH (5):
338
+ Bug 34266 - configs silently ignored if libxml2 doesn't support SAX1 interface
339
+ Update CaseFolding.txt to Unicode 6.1
340
+ Fix a build fail with gcc 2.95, not supporting the flexible array members.
341
+ Bump libtool revision
342
+ Update INSTALL
343
+
344
+ 2.9.92 (2.10 RC2)
345
+
346
+ Akira TAGOH (9):
347
+ Bug 50835 - Deprecate FC_GLOBAL_ADVANCE
348
+ Fix a typo and build fail.
349
+ Fix a build fail on MINGW
350
+ Fix the fail of make install with --disable-shared on Win32
351
+ clean up the lock file properly on even hardlink-not-supported filesystem.
352
+ Rename configure.in to configure.ac
353
+ Bug 18726 - RFE: help write locale-specific tests
354
+ Bump libtool revision
355
+ Update INSTALL
356
+
357
+ Marius Tolzmann (2):
358
+ Fix newline in warning about deprecated config includes
359
+ Fix warning about deprecated, non-existent config includes
360
+
361
+ 2.9.91 (2.10 RC1)
362
+
363
+ Akira TAGOH (60):
364
+ [doc] Update the path for cache files and the version.
365
+ [doc] Update for cachedir.
366
+ Revert "Fix a build fail on some environment."
367
+ Revert "Fix a build fail on some environment"
368
+ Fix a build issue due to the use of non-portable variables
369
+ Get rid of the prerequisites from the sufix rules
370
+ Bug 39914 - Please tag the cache directory with CACHEDIR.TAG
371
+ fc-cache: improvement of the fix for Bug#39914.
372
+ fcmatch: Set FcResultMatch at the end if the return value is valid.
373
+ Bug 47703 - SimSun default family
374
+ Bug 17722 - Don't overwrite user's configurations in default config
375
+ Fix a memory leak in FcDirScanConfig()
376
+ Bug 17832 - Memory leaks due to FcStrStaticName use for external patterns
377
+ fcpat: Increase the number of buckets in the shared string hash table
378
+ Fix the hardcoded cache file suffix
379
+ Move workaround macros for fat binaries into the separate header file
380
+ Bug 48020 - Fix for src/makealias on Solaris 10
381
+ Bug 24729 - [ne_NP] Fix ortho file
382
+ doc: Add contains and not_contains operators and elements
383
+ Use AC_HELP_STRING instead of formatting manually
384
+ Use pkgconfig to check builddeps
385
+ Bug 29341 - Make some fontconfig paths configurable
386
+ Bug 22862 - <alias> ignores <match> <test>s
387
+ Bug 26830 - Add search for libiconv non-default directory
388
+ Bug 28491 - Allow matching on FC_FILE
389
+ Bug 48573 - platform without regex do not have also REG_XXX defines
390
+ Bug 27526 - Compatibility fix for old windows sytems
391
+ Add --with-expat, --with-expat-includes and --with-expat-lib back.
392
+ doc: Fix a typo of the environment variable name.
393
+ Bug 25151 - Move cleanCacheDirectory() from fc-cache.c into
394
+ Rework to avoid adding the unexpected value to ICONV_CFLAGS and ICONV_LIBS
395
+ Fix a build issue again when no regex functions available
396
+ C++11 requires a space between literal and identifier
397
+ Bug 47721 - Add ChromeOS fonts to 30-metric-aliases.conf
398
+ Create CACHEDIR.TAG when fc-cache is run or only when the cache directory is created at the runtime.
399
+ Add --enable-iconv option to configure
400
+ Bug 27765 - FcMatch() returns style in wrong language
401
+ Disable iconv support anyway...
402
+ Bug 39278 - make usage of mmap optional
403
+ Output more verbose debugging log to show where to insert the element into the value list
404
+ fonts.conf: keeps same binding for alternatives
405
+ fcarch.c: get rid of the duplicate definition of FC_MAX
406
+ Bug 19128 - Handling whitespace in aliases
407
+ Bug 20411 - fontconfig doesn't match FreeDesktop directories specs
408
+ Correct the example
409
+ Bug 33644 - Fontconfig doesn't match correctly in <test>
410
+ fcatomic: fallback to create a directory with FcAtomicLock
411
+ Move statfs/statvfs wrapper to fcstat.c and add a test for the mtime broken fs
412
+ Fix the build fail on Solaris
413
+ Fix a typo and polish the previous change
414
+ Fix the wrong estimation for the memory usage information in fontconfig
415
+ Bug 32853 - Export API to get the default language
416
+ fcdefault: fallback if the environment variables are empty
417
+ Add the default language to the pattern prior to do build the substitution
418
+ fcdefault: no need to set FC_LANG in FcDefaultSubstitute() anymore
419
+ fcdefault: Add the lang object at FcConfigSubstituteWithPat() only when kind is FcMatchPattern
420
+ Bug 50525 - superfluous whitespace in the style
421
+ Bump libtool revision
422
+ doc: Fix distcheck error again...
423
+ Generate bzip2-compressed tarball too
424
+
425
+ Jeremy Huddleston (1):
426
+ fcarch: Check for architecture signature at compile time rather than configure time
427
+
428
+ Keith Packard (3):
429
+ Use posix_fadvise to speed startup
430
+ Extra ',' in AC_ARG_WITH(arch causes arch to never be autodetected
431
+ Deal with architectures where ALIGNOF_DOUBLE < 4
432
+
433
+ Mark Brand (1):
434
+ fix building for WIN32
435
+
436
+ Mikhail Gusarov (2):
437
+ Move FcStat to separate compilation unit
438
+ Fix cache aging for fonts on FAT filesystem under Linux
439
+
440
+ 2.9
441
+
442
+ Akira TAGOH (28):
443
+ Add charset editing feature.
444
+ add some document for range and charset.
445
+ Add the range support in blank element
446
+ Add editing langset feature.
447
+ add some documents
448
+ Bug 24744 - No n'ko orthography
449
+ Remove the unnecessary comment in ks.orth
450
+ Bug 32965 - Asturian (ast-ES) language matching missing ḷḷḥ
451
+ Add a missing file
452
+ Bug 35517 - Remove Apple Roman cmap support
453
+ Bug 40452 - Running 'fc-match --all' core dumps when no fonts are installed
454
+ Get rid of the unexpected family name
455
+ Bug 44826 - <alias> must contain only a single <family>
456
+ Bug 46169 - Pointer error in FcConfigGlobMatch
457
+ Do not update stream->pos when seeking is failed.
458
+ Bug 27385 - lcdfilter settings for freetype-2.3.12 not available in fontconfig-2.8.0
459
+ Add brx.orth and sat.orth
460
+ Bug 41694 - FcCache functions have random-number-generator side effects
461
+ Bug 23336 - unable to display bitmap-only (SFNT) TrueType or OpenType
462
+ Check null value for given object to avoid possibly segfaulting
463
+ Bug 19128 - Handling whitespace in aliases
464
+ Fix distcheck error
465
+ Update the version info
466
+ Update to detect the uncommited changes properly
467
+ Fix a build issue
468
+ Fix a build fail on some environment
469
+ Fix a build fail on some environment.
470
+ Get rid of $< from Makefile.am
471
+
472
+ Alan Coopersmith (1):
473
+ Fix compiler warnings
474
+
475
+ Behdad Esfahbod (54):
476
+ [fc-cache] Document -r argument in man page
477
+ [doc] Fix typo
478
+ Bug 25508 configure assumes bash > 2.0 is on system
479
+ Update INSTALL
480
+ Add note about autogen.sh to INSTALL
481
+ Fix doc typo
482
+ More doc typo fixes
483
+ Bug 18886 installation crashes if fontconfig already installed
484
+ Bug 26157 Solaris/Sun C 5.8: compilation of 2.8.0 and 2.7.3 fails
485
+ Bug 25152 Don't sleep(2) if all caches were uptodate
486
+ Don't include unistd.h in fontconfig.h
487
+ Accept TT_PLATFORM_MICROSOFT, TT_MS_ID_SYMBOL_CS from name table
488
+ Whitespace
489
+ More whitespace
490
+ Remove all training whitespaces
491
+ Fix comment
492
+ Add fc-pattern cmdline tool
493
+ Bug 29338 - fc-pattern.sgml, open para tag
494
+ Add comments
495
+ Bug 29995 - fc-cat does not invoke FcFini()
496
+ Add new public API: FcCharSetDelChar()
497
+ [fc-lang] Support excluding characters
498
+ Bug 24729 - [ne_NP] Fix ortho file
499
+ Add more copyright owners
500
+ Cleanup copyright notices to replace "Keith Packard" with "the author(s)"
501
+ Fix returned value
502
+ Bug 28958 - lang=en matches other langs
503
+ Make most generated-files cross-compiling-safe
504
+ Make fc-arch stuff cross-compiling-safe
505
+ Bump version
506
+ Allow editing charset and lang in target="scan"
507
+ Add <range> support for <blank> into the DTD
508
+ Skip <range> elements with begin > end
509
+ Doc nit
510
+ Fix assertion failure on le32d4
511
+ Remove AM_MAINTAINER_MODE
512
+ Update CaseFolding.txt to Unicode 6.0
513
+ Remove --enable-maintainer-mode from autogen.sh
514
+ Bug 20113 - Uighur (ug) orthography incomplete
515
+ Bug 30566 - fcformat.c:interpret_enumerate() passes uninitialized idx to FcPatternGetLangSet()
516
+ Mark constant strings as constant
517
+ More doc typo fixes
518
+ Always define FcStat as a function
519
+ Fix warning
520
+ Bug 35587 - Add padding to make valgrind and glibc not hate each other
521
+ [.gitignore] Update
522
+ Bug 36577 - Updating cache with no-bitmaps disables bitmap fonts...
523
+ Bug 26718 - "fc-match sans file" doesn't work
524
+ Switch fc-match to use FcPatternFormat()
525
+ Switch fc-cat to use FcPatternFormat()
526
+ Fix stupid bug in FcFontSort()
527
+ Bug 41171 - Invalid use of memset
528
+ Fix parallel build
529
+ Add FcPublic to FcLangSetUnion and FcLangSetSubtract
530
+
531
+ Brad Hards (1):
532
+ Documentation fixes
533
+
534
+ Jeremy Huddleston (2):
535
+ fontconfig.pc: Add variables for confdir and cachedir
536
+ fontconfig.pc.in: Add sysconfdir, localstatedir, and PACKAGE
537
+
538
+ Jinkyu Yi (1):
539
+ Bug 42423 - make default Korean font from Un to Nanum
540
+
541
+ MINAMI Hirokazu (1):
542
+ Bug 43406 - typo of Japanese font name in conf.d/65-nonlatin.conf
543
+
544
+ Mike Frysinger (9):
545
+ FcStrPlus: optimize a little
546
+ delete unused variables
547
+ FcStat: change to FcChar8 for first arg
548
+ fc-cat: fix pointer warning
549
+ FcName{,Get}Constant: constify string input
550
+ fc-{list,match}: constify format string
551
+ fix build warnings when using --with-arch
552
+ FcObjectValidType: tweak -1 checking
553
+ makealias: handle missing funcs better
554
+
555
+ Parag Nemade (2):
556
+ Bug 25651 - Add ortho file for locale brx_IN
557
+ Bug 25650 - Add ortho file for locale sat_IN
558
+
559
+ Pravin Satpute (4):
560
+ Bug 27195 - need updates to ks.orth file
561
+ Bug 43321 - Required corrections in urdu.orth file
562
+ Bug 25653 - Add ortho file for locale doi_IN
563
+ Bug 25652 - Add ortho file for locale mni_IN
564
+
565
+ 2.8
566
+
567
+ Behdad Esfahbod (24):
568
+ Clarify default confdir and cachedir better.
569
+ Move FcAlign to fcint.h
570
+ [fc-arch] Add FcAlign to arch signature
571
+ [int] Define MIN/MAX/ABS macros
572
+ Bump cache version up from 2 to 3 and fix FcLangSet caching/crash
573
+ Remove unused macros
574
+ [int] Remove fc_storage_type() in favor of direct access to v->type
575
+ [int] Remove fc_value_* macros that did nothing other than renaming
576
+ Enable automake silent rules
577
+ [int] Remove more unused macros
578
+ [xml] Remove unused code
579
+ [arch] Try to ensure proper FcLangSet alignment in arch
580
+ [lang] Fix serializing LangSet from older versions
581
+ Make sure fclang.h and fcarch.h are built
582
+ Remove bogus comment
583
+ [fc-glyphname] Cleanup Makefile.am
584
+ [src] Create fcglyphname.h automatically
585
+ [fc-glyphname] Rename internal arrays to prefix with _fc_
586
+ Clean up Makefile's a bit
587
+ [fc-glyphname] Remove Adobe glyphlist
588
+ [fc-case] Update CaseFolding.txt to Unicode 5.2.0
589
+ [fc-arch] Beautify the arch template
590
+ [fc-arch] Rename architecture names to better reflect what they are
591
+ Bump libtool revision in preparation for release
592
+
593
+ 2.7.3
594
+
595
+ Behdad Esfahbod (2):
596
+ Use default config in FcFileScan() and FcDirScan()
597
+ Bump libtool version in preparation for release
598
+
599
+ Roozbeh Pournader (2):
600
+ Correct Ewe (ee) orthography to use U+025B (bug #20711)
601
+ Updated Arabic, Persian, and Urdu orthographies
602
+
603
+ 2.7.2
604
+
605
+ Behdad Esfahbod (6):
606
+ Improve charset printing
607
+ [ja.orth] Comment out FULLWIDTH YEN SIGN (#22942)
608
+ Bug 22037 - No Fonts installed on a default install on Windows Server 2003
609
+ Bug 23419 - "contains" expression seems not working on the fontconfig rule
610
+ Revert "Fix FcNameUnparseLangSet()" and redo it
611
+ Bump libtool version for release
612
+
613
+ Tor Lillqvist (3):
614
+ Fix MinGW compilation
615
+ Fix heap corruption on Windows in FcEndElement()
616
+ Use multi-byte codepage aware string function on Windows
617
+
618
+ 2.7.1
619
+
620
+ Behdad Esfahbod (16):
621
+ git-tag -s again
622
+ Fix win32 build
623
+ Replace spaces with tabs in conf files
624
+ Remove unused ftglue code
625
+ Add Inconsolata to monospace config (#22710)
626
+ Fix leak with string VStack objects
627
+ Improve libtool version parsing (#22122)
628
+ Use GetSystemWindowsDirectory() instead of GetWindowsDirectory() (#22037)
629
+ Remove unused macros
630
+ Fix FcNameUnparseLangSet()
631
+ Fix doc syntax (#22902)
632
+ TT_MS_ID_UCS_4 is really UTF-16BE, not UTF-32
633
+ [doc] Add ~/fonts.conf.d to user docs
634
+ Hardcode /etc/fonts instead of @CONFDIR@ in docs (#22911)
635
+ Bump libtool versions that 2.7.0 (I forgot to do back then)
636
+ Update .gitignore
637
+
638
+ Karl Tomlinson (1):
639
+ Don't change the order of names unnecessarily (#20128)
640
+
641
+ 2.7
642
+
643
+ Alexey Khoroshilov (1):
644
+ Use human-readable file names in the docs (bug #16278)
645
+
646
+ Behdad Esfahbod (119):
647
+ Avoid C99ism in Win32 code (#16651)
648
+ [doc] Fix inaccuracy in FcFontRenderPrepare docs (#16985)
649
+ When canonizing filenames, squash // and remove final / (#bug 16286)
650
+ Add orth file for Maithili mai.orth (#15821)
651
+ Replace RCS Id tags with the file name
652
+ [doc] Fix signatures of FcPatternGetFTFace and FcPatternGetLangSet (#16272)
653
+ Update Thai default families (#16223)
654
+ Add ~/.fonts.conf.d to default config (#17100)
655
+ [fc-match] Fix list of getopt options in --help
656
+ Update man pages
657
+ Add fc-query (#13019)
658
+ Implement fc-list --verbose (#13015)
659
+ [doc] Add const decorator for FcPatternDuplicate()
660
+ Add FcPatternFilter() (#13016)
661
+ [doc] Document that a zero rescanInterval disables automatic checks (#17103)
662
+ Get rid of $Id$ tags
663
+ [doc] Fix signature of FcConfigHome()
664
+ Fix docs re 'orig' argument of FcPatternBuild and family
665
+ Update sr.orth to actul subset of Cyrillic used by Serbian (#17208)
666
+ Add Sindhi .orth file. (#17140)
667
+ Add WenQuanYi fonts to default conf (#17262, from Mandriva)
668
+ Handle -h and --help according to GNU Coding Standards (#17104)
669
+ Document when config can be NULL (#17105)
670
+ Add FcConfigReference() (#17124)
671
+ Document how to free return value of FcNameUnparse()
672
+ Don't leak FcValues string loaded through fcxml.c (#17661)
673
+ Don't call FcPatternGetCharSet in FcSortWalk unless we need to (#17361)
674
+ Fix two more doc typos
675
+ [.gitignore] Update
676
+ Cleanup symlinks in "make uninstall" (bug #18885)
677
+ [fccache] Consistently use FcStat() over stat() (bug #18195)
678
+ Consistently use FcStat() over stat() in all places
679
+ Use __builtin_popcount() when available (bug #17592)
680
+ Fix compile with old FreeType that doesn't have FT_Select_Size() (bug #17498)
681
+ Implement fc-list --quiet ala grep (bug #17141)
682
+ [65-fonts-persian.conf] Set foundry in target=scan instead of target=font
683
+ Don't use identifier named complex
684
+ Explicitly chmod() directories (bug #18934)
685
+ Remove special-casing of FC_FILE in FcPatternPrint()
686
+ [.gitignore] Update
687
+ Implement FcPatternFormat and use it in cmdline tools (bug #17107)
688
+ Fix comparison of family names to ignore leading space properly
689
+ [fcmatch.c] Fix debug formatting
690
+ [fcmatch] Use larger multipliers to enforce order
691
+ [fcmatch] When matching, reserve score 0 for when elements don't exist
692
+ [fcmatch] Move FcFontSetMatch() functionality into FcFontSetMatchInternal()
693
+ [doc] Note that fontset returned by FcConfigGetFonts should not be modified
694
+ Make FcCharSetMerge() public
695
+ Don't use FcCharSetCopy in FcCharSetMerge
696
+ Oops. Fix usage output.
697
+ Revive FcConfigScan() (bug #17121)
698
+ Add fc-scan too that runs FcFileScan/FcDirScan
699
+ Oops, fix FcPatternFilter
700
+ [fc-match] Accept list of elements like fc-list (bug #13017)
701
+ Cleanup all manpage.* files
702
+ [fcmatch] Fix crash when no fonts are available.
703
+ [fcfreetype] Fix typo in GB2312 encoding name string (#19845)
704
+ Add ICONV_LIBS to fontconfig.pc.in (#19606)
705
+ [win32] Fix usage of GetFullPathName()
706
+ [win32] Expand "APPSHAREFONTDIR" to ../share/fonts relative to binary location
707
+ [win32] Do not remove leading '\\' such that network paths work
708
+ [fccache] Make sure the cache is current when reusing from open caches
709
+ Update Sinhala orthography (#19288)
710
+ [cache] After writing cache to file, update the internal copy to reflect this
711
+ Further update Sinhala orthography (#19288)
712
+ [fcformat] Add support for width modifiers
713
+ [fcformat] Refactor and restructure code for upcoming changes
714
+ [fcformat] Add support for subexpressions
715
+ [fcformat] Add element filtering and deletion
716
+ [fcformat] Add conditionals
717
+ [fcformat] Add simple converters
718
+ [fcformat] Implement 'cescape', 'shescape', and 'xmlescape' converters
719
+ [FcStrBuf] better handle malloc failure
720
+ [fcformat] Add value-count syntax
721
+ [fcformat] Implement 'delete', 'escape', and 'translate' filter functions
722
+ [fcformat] Start adding builtins
723
+ [fcformat] Refactor code to avoid malloc
724
+ [fcformat] Add support for builtin formats
725
+ [fcformat] Support indexing simple tags
726
+ [fcformat] Support 'default value' for simple tags
727
+ [fcformat] Implement array enumeration
728
+ [fclang] Implement FcLangSetGetLangs() (#18846)
729
+ [fcformat] Enumerate langsets like we do arrays of values
730
+ [fcformat] Add a 'pkgkit' builtin that prints tags for font packages
731
+ [fcformat] Add list of undocumented language features
732
+ [fc-lang] Continue parsing after an "include" (#20179)
733
+ Fix Fanti (fat) orth file (#20390)
734
+ Fix Makefile's to not create target file in case of failure
735
+ [fcstr.c] Embed a static 64-byte buffer in FcStrBuf
736
+ [fcstr,fcxml] Don't copy FcStrBuf contents when we would free it soon
737
+ [fcxml] Don't allocate attr array if there are no attributes
738
+ [fcxml] Embed 8 static FcPStack objects in FcConfigParse
739
+ [fcxml] Embed 64 static FcVStack objects in FcConfigParse
740
+ [fcxml.c] Embed a static 64-byte attr buffer in FcPStack
741
+ Call git tools using "git cmd" instead of "git-cmd" syntax
742
+ Replace 'KEITH PACKARD' with 'THE AUTHOR(S)' in license text in all files
743
+ [fcformat] Fix default-value handling
744
+ Document FcPatternFormat() format
745
+ [Makefile.am] Don't clean ChangeLog in distclean
746
+ Revert "[conf] Disable hinting when emboldening (#19904)" (#20599)
747
+ [fc-lang] Fix bug in country map generation
748
+ [fcstr] Remove unused variable
749
+ [fc-lang] Make LangSet representation in the cache files stable
750
+ [fc-cache] Remove obsolete sentence from man page
751
+ Detect TrueType Collections by checking the font data header
752
+ Mark matchers array const (#21935)
753
+ Use/prefer WWS family/style (name table id 21/22)
754
+ Simplify FcValueSave() semantics
755
+ Add XXX note about Unicode Plane 16
756
+ Always set *changed in FcCharsetMerge
757
+ [charset] Grow internal FcCharset arrays exponentially
758
+ Remove unused prototypes and function
759
+ [xml] Centralize FcExpr allocation
760
+ [xml] Mark more symbols static
761
+ [xml] Allocate FcExpr's in a pool in FcConfig
762
+ [xml] Intern more strings
763
+ Bug 22154 -- fontconfig.pc doesn't include libxml2 link flags
764
+ Fix distcheck
765
+ Remove keithp's GPG key id
766
+
767
+ Benjamin Close (1):
768
+ Remove build manpage logfile if it exists
769
+
770
+ Chris Wilson (1):
771
+ Reduce number of allocations during FcSortWalk().
772
+
773
+ Dan Nicholson (1):
774
+ Let make expand fc_cachedir/FC_CACHEDIR (bug #18675)
775
+
776
+ Harald Fernengel (1):
777
+ Don't use variables named 'bool' (bug #18851)
778
+
779
+ Harshula Jayasuriya (1):
780
+ Fix Sinhala coverage (bug #19288)
781
+
782
+ Karl Tomlinson (1):
783
+ Change FcCharSetMerge API
784
+
785
+ Mike FABIAN (1):
786
+ [conf] Disable hinting when emboldening (#19904)
787
+
788
+ Peter (1):
789
+ Make sure alias files are built first (bug 16464)
790
+
791
+ Rahul Bhalerao (1):
792
+ Add config for new Indic fonts (bug #17856)
793
+
794
+ Roozbeh Pournader (60):
795
+ Correct Sindhi orthography to use Arabic script (bug #17140)
796
+ Remove Sinhala characters not in modern use (bug #19288)
797
+ Add Filipino orth, alias Tagalog to Filipino (bug #19846)
798
+ Split Mongolian orth to Mongolia and China (bug #19847)
799
+ Fix doubly encoded UTF-8 in comments (bug #19848)
800
+ Change Turkmen orth from Cyrillic to Latin (bug #19849)
801
+ Rename Venda from "ven" to "ve" (bug #19852)
802
+ Rename "ku" to "ku_am", add "ku_iq" (bug #19853).
803
+ Add Kashubian (csb) orth file (bug #19866)
804
+ Add Malay (ms) orthography (bug #19867)
805
+ Add Kinyarwanda (rw) orthography (bug #19868)
806
+ Add Upper Sorbian (hsb) orthography (bug #19870)
807
+ Add Berber orthographies in Latin and Tifinagh scripts (bug #19881)
808
+ Renamed az to az_az (bug #19889)
809
+ Rename Igbo from "ibo" to "ig" (bug #19892)
810
+ Remove punctuation symbols from Asturian orthography (bug #19893)
811
+ Add Chhattisgarhi (hne) orthography (bug #19891)
812
+ Use newly added Cyrillic letters for Kurdish (bug #20049)
813
+ Add Kurdish in Turkey (ku_tr) orthography (bug #19891)
814
+ Add Aragonese (an) orthography (bug #19891)
815
+ Add Haitian Creole (ht) orthography (bug #19891)
816
+ Ad Ganda (lg) orthography (bug #19891)
817
+ Add Limburgan (li) orthography (bug #19891)
818
+ Add Sardinian (sc) orthography (bug #19891)
819
+ Add Sidamo (sid) and Wolaitta (wal) orthographies (bug #19891)
820
+ Fix Bengali (bn) and Assamese (as) orthographies (bug #22924)
821
+ Remove Euro Sign from all orthographies (bug #19865)
822
+ Add Ottoman Turkish (ota) orthography (bug #20114)
823
+ Divide Panjabi (pa) to that of Pakistan and India (bug #19890)
824
+ Add Blin (byn) orthography (bug #19891)
825
+ Add Papiamento (pap_aw, pap_an) orthographies (bug #19891)
826
+ Add Crimean Tatar (crh) orthography (bug #19891)
827
+ Switch Uzbek (uz) orthography to Latin (bug #19851)
828
+ Update Azerbaijani in Latin (az_az) to present usage (bug #20173)
829
+ Rename Avaric orthography from 'ava' to 'av' (bug #20174)
830
+ Rename Bambara orthography from 'bam' to 'bm' (bug #20175)
831
+ Rename Fulah orthography from 'ful' to 'ff' (bug #20177)
832
+ Change Kashmiri (ks) orthography to Arabic script (bug #20200)
833
+ Tighten Central Khmer (km) orthography (bug #20202)
834
+ Remove digits and symbols from some Indic orthographies (bug #20204)
835
+ Add Divehi (dv) orthography (bug #20207)
836
+ Extend Crimean Tatar (crh) orthography (bug #19891)
837
+ Update Serbo-Croatian (sh) orthography (bug #20368)
838
+ Add Ewe (ee) orthography (bug #20386)
839
+ Add Herero (hz) orthograhy (bug #20387)
840
+ Add Akan (ak) and Fanti (fat) orthographies (bug #20390)
841
+ Added Quechua (qu) orthography (bug #20392)
842
+ Add Sango (sg) orthography (bug #20393)
843
+ Add Tahitian (ty) orthography (bug #20391)
844
+ Add Navajo (nv) orthography (bug #20395)
845
+ Add Rundi (rn) orthography (bug #20398)
846
+ Add Zhuang (za) orthography (bug #20399)
847
+ Add orthographies for Oshiwambo languages (bug #20401)
848
+ Add Shona (sn) orthography (bug #20394)
849
+ Add Sichuan Yi (ii) orthography (bug #20402)
850
+ Add Javanese (jv) orthography (bug #20403)
851
+ Add Nauru (na) orthography (bug #20418)
852
+ Add Kanuri (kr) orthography (bug #20438)
853
+ Add Sundanese (su) orthography (bug #20440)
854
+ Reorganize Panjabi/Punjabi and Lahnda orthographies (bug #19890)
855
+
856
+ Serge van den Boom (1):
857
+ Correctly handle mmap() failure (#21062)
858
+
859
+ 2.6
860
+
861
+ 2.5.93 (2.6 RC3)
862
+
863
+ Alexey Khoroshilov (1):
864
+ Fix FcStrDirname documentation. (bug 16068)
865
+
866
+ Behdad Esfahbod (1):
867
+ Persian conf update. (bug 16066).
868
+
869
+ Evgeniy Stepanov (1):
870
+ Fix index/offset for 'decorative' matcher. Bug 15890.
871
+
872
+ Glen Low (1):
873
+ Fix Win32 build error: install tries to run fc-cache locally (bug 15928).
874
+
875
+ Keith Packard (8):
876
+ Call FcFini to make memory debugging easier
877
+ Fix a few memory tracking mistakes.
878
+ Add extended, caps, dunhill style mappings.
879
+ Freetype 2.3.5 (2007-jul-02) fixes indic font hinting. re-enable (bug 15822)
880
+ Add a copy of dolt.m4 to acinclude.m4.
881
+ Libs.private needs freetype libraries
882
+ Oops. Fix for bug 15928 used wrong path for installed fc-cache.
883
+ Ignore empty <dir></dir> elements
884
+
885
+ Neskie Manuel (1):
886
+ Add Secwepemctsin Orthography. Bug 15996.
887
+
888
+ Sayamindu Dasgupta (1):
889
+ FcConfigUptoDate breaks if directory mtime is in the future. Bug 14424.
890
+
891
+ 2.5.92 (2.6 RC2)
892
+
893
+ Carlo Bramini (1):
894
+ Add FreeType-dependent functions to fontconfig.def file. (bug 15415)
895
+
896
+ Changwoo Ryu (1):
897
+ Korean font in the default config - replacing baekmuk with un (bug 13569)
898
+
899
+ Dennis Schridde (1):
900
+ Proper config path for static libraries in win32
901
+
902
+ Eric Anholt (1):
903
+ Fix build with !ENABLE_DOCS and no built manpages.
904
+
905
+ Frederic Crozat (1):
906
+ Merge some of Mandriva configuration into upstream configuration. Bug 13247
907
+
908
+ Keith Packard (11):
909
+ Use DOLT if available
910
+ Work around for bitmap-only TrueType fonts that are missing the glyf table.
911
+ Remove size and dpi values from bitmap fonts. Bug 8765.
912
+ Add some sample cursive and fantasy families.
913
+ Add --all flag to fc-match to show the untrimmed list. Bug 13018.
914
+ Remove doltcompile in distclean
915
+ Use of ":=" in src/Makefile.am is unportable (bug 14420)
916
+ Make fc-match behave better when style is unknown (bug 15332)
917
+ Deal with libtool 2.2 which doesn't let us use LT_ variables. (bug 15692)
918
+ Allow for RC versions in README update
919
+ git ignore doltcompile
920
+
921
+ Ryan Schmidt (1):
922
+ fontconfig build fails if "head" is missing or unusable (bug 14304)
923
+
924
+ Sylvain Pasche (1):
925
+ Fontconfig options for freetype sub-pixel filter configuration
926
+
927
+ 2.5.91 (2.6 RC1)
928
+
929
+ Hongbo Zhao (1):
930
+ Not_contain should use strstr, not strcmp on strings. (bug 13632)
931
+
932
+ Keith Packard (11):
933
+ Move conf.avail/README to conf.d/README (bug 13392)
934
+ Fix OOM failure case in FcPStackPush.
935
+ Remove freetype requirement for build-time applications.
936
+ Include fcftaliastail.h so that the freetype funcs are exported.
937
+ Eliminate references to freetype from utility Makefile.am's
938
+ Distribute new fcftint.h file
939
+ Create new-version.sh to help with releases, update INSTALL instructions
940
+ Distribute khmer font aliases
941
+ Add more files to .gitignore
942
+ new-version.sh was mis-editing files
943
+ git-tag requires space after -m flag
944
+
945
+ 2.5
946
+
947
+ Keith Packard (4):
948
+ Document several function return values (Bug 13145).
949
+ Document that Match calls FcFontRenderPrepare (bug 13162).
950
+ Document that FcConfigGetFonts returns the internal fontset (bug 13197)
951
+ Revert "Remove fcprivate.h, move the remaining macros to fcint.h."
952
+
953
+ Tor Lillqvist (1):
954
+ Workaround for stat() brokenness in Microsoft's C library (bug 8526)
955
+
956
+ 2.4.92 (2.5 RC2)
957
+
958
+ Behdad Esfahbod (14):
959
+ Make fc-match --sort call FcFontRenderPrepare.
960
+ Port fonts-persian.conf to new alias syntax with binding="same"
961
+ Fix trivial bugs in edit-sgml.c
962
+ Add FcGetLangs() and FcLangGetCharSet().
963
+ Add/update config files from Fedora.
964
+ Split 40-generic.conf into 40-nonlatin.conf and 45-latin.conf
965
+ Use binding="same" in 30-urw-aliases.conf and remove duplicate entries.
966
+ Remove redundant/obsolete comments from conf files.
967
+ Remove 20-lohit-gujarati.conf. It's covered by 25-unhint-nonlatin.conf now.
968
+ Oops, fix Makefile.am.
969
+ Remove 25-unhint-nonlatin.conf from default configuration by not linking it.
970
+ Fix documented conf-file naming format in README
971
+ Remove list of available conf files from README.
972
+ Simplify/improve 30-metric-aliases.conf
973
+
974
+ Keith Packard (25):
975
+ Also check configDirs mtimes in FcConfigUptoDate
976
+ Respect "binding" attribute in <alias> entries.
977
+ Correct documentation for FcAtomicLock (Bug 12947).
978
+ Remove fcprivate.h, move the remaining macros to fcint.h.
979
+ Correct documentation for FcConfigUptoDate (bug 12948).
980
+ Document skipping of fonts from FcFileScan/FcDirScan.
981
+ Make file_stat argument to FcDirCacheLoadFile optional.
982
+ Clean up exported names in fontconfig.h.
983
+ Track line numbers in sgml edit tool input.
984
+ Typo error in function name: Inverval -> interval
985
+ Don't check cache file time stamps when cleaning cache dir.
986
+ Use FcLangDifferentTerritory instead of FcLangDifferentCountry.
987
+ Verify documentation covers exposed symbols.
988
+ Document previously undocumented functions. (bug 12963)
989
+ Update documentation for FcStrCopyFilename (bug 12964).
990
+ Update documentation for stale FcConfigGetConfig function.
991
+ Have FcConfigSetCurrent accept the current configuration and simply return
992
+ Remove references to FcConfigParse and FcConfigLoad.
993
+ Replace incorrect documentation uses of 'char' with 'FcChar8' (bug 13002).
994
+ Fix formatting syntax in doc/fccache.fncs
995
+ Generate fccache.sgml, fcdircache.sgml and fclangset.sgml.
996
+ Formatting syntax mistake in doc/fclangset.fncs.
997
+ Link new function documentation into the fontconfig-devel.sgml
998
+ Ignore new generated documentation
999
+ Export FcConfig{G,S}etRescanInverval from .so, mark as deprecated.
1000
+
1001
+ 2.4.91 (2.5 RC1)
1002
+
1003
+ Behdad Esfahbod (1):
1004
+ Update CaseFolding.txt to Unicode 5.1.0
1005
+
1006
+ Dwayne Bailey (1):
1007
+ Add/fix *.orth files for South African languages
1008
+
1009
+ Hideki Yamane (1):
1010
+ Handle Japanese fonts better. (debian bug #435971)
1011
+
1012
+ Keith Packard (32):
1013
+ rehash increment could be zero, causing rehash infinite loop.
1014
+ Work around FreeType bug when glyph name buffer is too small.
1015
+ Free temporary string in FcDirCacheUnlink (Bug #11758)
1016
+ Fix ChangeLog generation to avoid circular make dependency
1017
+ Store font directory mtime in cache file.
1018
+ Comment about mmaping cache files was misleading.
1019
+ Make FC_FULLNAME include all fullname entries, elide nothing. [bug 12827]
1020
+ Remove unneeded call to access(2) in fc-cache.
1021
+ Improve verbose messages from fc-cache.
1022
+ Verbose message about cleaning directories was imprecise
1023
+ Don't use X_OK bit when checking for writable directories (bug 12438)
1024
+ Have fc-cache remove invalid cache files from cache directories.
1025
+ FcConfigParseAndLoad doc was missing the last param.
1026
+ Place language name in constant array instead of pointer.
1027
+ Must not insert cache into hash table before completely validating.
1028
+ Eliminate relocations for glyph name table.
1029
+ Eliminate relocations from FcCodePageRange structure (bug 10982).
1030
+ Leave generated headers out of distribution (bug 12734).
1031
+ Move <cachedir> elements to the end of fonts.conf.
1032
+ Add BRAILLE PATTERN BLANK to list of blank glyphs.
1033
+ Replace makealias pattern with something supported by POSIX grep (bug 11083)
1034
+ FcInit should return FcFalse when FcInitLoadConfigAndFonts fails. (bug 10976)
1035
+ There is no U+1257 (bug 10899).
1036
+ Spelling errors in documentation. (bug 10879).
1037
+ Oops. Left debugging printf in previous commit.
1038
+ Handle UltraBlack weight.
1039
+ Fix parallel build in fontconfig/docs (bug 10481).
1040
+ Distribute man source files for command line programs (bug 9678).
1041
+ Ensure weight/slant values present even when style is supplied (bug 9313).
1042
+ fontconfig needs configure option to use gnu iconv (bug 4083).
1043
+ Match 'ultra' on word boundaries to detect ultra bold fonts. (bug 2511)
1044
+ Build fix for Solaris 10 with GCC.
1045
+
1046
+ Mike FABIAN (1):
1047
+ Avoid crashes if config files contain junk.
1048
+
1049
+ Stephan Kulow (1):
1050
+ Make FcPatternDuplicate copy the binding instead of always using Strong.
1051
+
1052
+ Tilman Sauerbeck (2):
1053
+ Store FcNoticeFoundries in read-only memory.
1054
+ Store FcVendorFoundries in read-only memory.
1055
+
1056
+ 2.4.2
1057
+
1058
+ Han-Wen Nienhuys:
1059
+ FcStrCanonFileName buggy for mingw. (bug 8311)
1060
+ More fixes for Win32 building (bug 8311)
1061
+
1062
+ Kean Johnston:
1063
+ Don't use varargs CPP macros in fccache.c. (bug 8733)
1064
+
1065
+ Keith Packard:
1066
+ Remove documentation for non-existant FcConfigNormalizeFontDir.
1067
+ Build fontconfig.def from header files when needed.
1068
+ Detect and use available random number generator (bug 8308)
1069
+ Add sparc64 architecture string.
1070
+ FcStrCanonAbsoluteFilename should be static.
1071
+ Use explicit platform/nameid order when scanning ttf files.
1072
+ Warn (and recover) from config file without <cachedir> elements.
1073
+ Avoid writing uninitialized structure pad bytes to cache files.
1074
+ Fix grep pattern in makealias to work on non-Gnu grep (bug 8368).
1075
+ Add FcFreeTypeQueryFace external API. Bug #7311.
1076
+ Segfault scanning non-font files. Disallow scan edit of user vars. (#8767)
1077
+ Add space between type and formal in devel man pages (bug 8935)
1078
+
1079
+ Mike FABIAN:
1080
+ Do not clean cache files for different architectures
1081
+
1082
+ Peter Breitenlohner:
1083
+ A VPATH build of fontconfig-2.4.1 fails for various reasons. Bug 8933.
1084
+ Use <literal> instead of <sgmltag> when documenting fonts.conf. Bug 8935.
1085
+ Fix fc-cat documentation (bug 8935).
1086
+
1087
+
1088
+ 2.4.1
1089
+
1090
+ Keith Packard:
1091
+ Update installation notes for 2.4 base.
1092
+ Add ppc64 signature. Bug 8227
1093
+ Add signatures for m68k and mipsel (thanks debian buildd)
1094
+ Add warning flags to fc-cache build. Clean up warnings in fc-cache.
1095
+ Reimplement FcConfigAppFontAddDir; function was lost in 2.4.0.
1096
+
1097
+ 2.4.0
1098
+
1099
+ David Turner:
1100
+ Replace character discovery loop with simpler, faster version.
1101
+
1102
+ James Cloos:
1103
+ Move files from conf.d to conf.avail
1104
+ Standardize conf.avail number prefixing convention
1105
+ Support all five possibilities for sub-pixel
1106
+ Move user and local conf file loading into conf.avail files
1107
+ Number the remaining conf.avail files
1108
+ Update Makefile.am to match conf.avail changes
1109
+ Replace load of conf.d in fonts.conf.in
1110
+ Make room for chunks from fonts.conf in conf.avail
1111
+ Re-order old conf.d files
1112
+ Move some section from fonts.conf into conf.avail files
1113
+ Update Makefile.am files
1114
+ Make conf.avail and conf.d work
1115
+
1116
+ Keith Packard:
1117
+ Create fc_cachedir at install time. Bug 8157.
1118
+ Reference patterns in FcCacheCopySet.
1119
+ Replace gnu-specific sed command with simple grep.
1120
+ Attempt to fix makealias usage for build on Mac OS X.
1121
+ Accept locale environment variables that do not contain territory.
1122
+ Merge branch 'jhcloos'
1123
+ Insert newly created caches into reference data structure.
1124
+ Add XML headers to new conf files. Move link make commands to conf.avail dir
1125
+ Rename conf.avail to conf.d
1126
+ Fix conf.d directory sorting.
1127
+ Include cachedir in fonts.dtd.
1128
+ Don't display tests for DESTDIR on make install.
1129
+ Split much of the configuration into separate files. Renumber files
1130
+
1131
+ 2.3.97
1132
+
1133
+ Carl Worth:
1134
+ Rename FcPatternThawAll to FcPatternFini.
1135
+ Add a configuration file that disables hinting for the Lohit Gujarati font
1136
+
1137
+ Keith Packard:
1138
+ Various GCC 4 cleanups for signed vs unsigned char
1139
+ Finish INSTALL changes. .gitignore ChangeLog
1140
+ Merge branch 'fc-2_4_branch' to master
1141
+ Remove all .cvsignore files
1142
+ Hide private functions in shared library. Export functionality for utilities.
1143
+ Hide FreeType glue code from library ABI.
1144
+ Can't typecheck values for objects with no known type.
1145
+ Leave cache files mapped permanently.
1146
+ Reference count cache objects.
1147
+ Make cache reference counting more efficient.
1148
+ Oops, fc-lang broke when I added cache referencing.
1149
+ Correct reference count when sharing cache file objects.
1150
+ Eliminate .so PLT entries for local symbols. (thanks to Arjan van de Ven)
1151
+ Update architecture signatures for x86-64 and ppc.
1152
+ Parallel build fix for fcalias.h and fcaliastail.h
1153
+ Charset hashing depended on uniqueness of leaves.
1154
+
1155
+ Patrick Lam:
1156
+ file Makefile.am was initially added on branch fc-2_4_branch.
1157
+ Modify config file to use Greek fonts before Asian fonts with Greek glyphs.
1158
+ Use libtool -no-undefined flag on all platforms.
1159
+ file ftglue.c was initially added on branch fc-2_4_branch.
1160
+ 2005-11-23 Frederic Crozat <fcrozat@mandriva.com>: reviewed by: plam
1161
+ file 10-fonts-persian.conf was initially added on branch fc-2_4_branch.
1162
+ Sort directory entries while scanning them from disk; prevents Heisenbugs
1163
+ file ln.orth was initially added on branch fc-2_4_branch.
1164
+ Fix typos in orth files. Reported by Denis Jacquerye.
1165
+ On Windows, unlink before rename. Reported by Tim Evans.
1166
+ file fc-match.sgml was initially added on branch fc-2_4_branch.
1167
+
1168
+ 2.3.96
1169
+
1170
+ Keith Packard:
1171
+ Make path names in cache files absolute (NB, cache format change) Stop
1172
+ Eliminate pattern freezing
1173
+ Add .gitignore
1174
+ Construct short architecture name from architecture signature.
1175
+ Write caches to first directory with permission. Valid cache in FcDirCacheOpen.
1176
+ Eliminate NormalizeDir. Eliminate gratuitous stat/access calls per dir.
1177
+ Add architecture to cache filename.
1178
+ Eliminate global cache. Eliminate multi-arch cache code.
1179
+ Fix up fc-cache and fc-cat for no global cache changes.
1180
+ Eliminate ./ and ../ elements from font directory names when scanning.
1181
+ Regenerate x86 line in fcarch.tmpl.h to match change in cache data.
1182
+ Add x86-64 architecture and signature.
1183
+ During test run, remove cache directory to avoid stale cache usage.
1184
+ Add ppc architecture
1185
+ Revert to original FcFontSetMatch algorithm to avoid losing fonts.
1186
+ Rework cache files to use offsets for all data structures.
1187
+ Fix build problems caused by cache rework.
1188
+ FcCharSetSerialize was using wrong offset for leaves. Make fc-cat work.
1189
+ Rework Object name database to unify typechecking and object lookup.
1190
+ Skip broken caches. Cache files are auto-written, don't rewrite in fc-cache.
1191
+ Fix fc-cat again. Sigh.
1192
+ Use intptr_t instead of off_t inside FcCache structure.
1193
+ Serialized value lists were only including one value.
1194
+ Automatically remove invalid cache files.
1195
+ With no args, fc-cat now dumps all directories.
1196
+ Revert ABI changes from version 2.3
1197
+ Change $(pkgcachedir) to $(fc_cachedir) in fc-cat and fc-cache Makefile.am
1198
+ Allow FcTypeLangSet to match either FcTypeLangSet or FcTypeString.
1199
+ Remove stale architecture signatures.
1200
+ Pass directory information around in FcCache structure. Freeze charsets.
1201
+ Fix fc-lang to use new charset freezer API.
1202
+ Fontset pattern references are relative to fontset, not array.
1203
+ Add some ignores
1204
+ Only rebuild caches for system fonts at make install time.
1205
+ Fix memory leaks in fc-cache directory cleaning code.
1206
+ Add @EXPAT_LIBS@ to Libs.private in fontconfig.pc (bug 7683)
1207
+ Avoid #warning directives on non-GCC compilers. (bug 7683)
1208
+ Chinese/Macau needs the Hong Kong orthography instead of Taiwan (bug 7884)
1209
+ Add Assamese orthography (as.orth). Bug #8050
1210
+ Really only rebuild caches for system fonts at make install time.
1211
+ Fonts matching lang not territory should satisfy sort pattern lang.
1212
+ Prefer Bitstream Vera to DejaVu families.
1213
+ Guess that mac roman names with lots of high bits are actually SJIS.
1214
+ Document FC_DEBUG values (bug 6393). Document name \ escape syntax.
1215
+ Move Free family names to bottom of respective aliases. (bug 7429)
1216
+ Unify directory canonicalization into FcStrAddFilename.
1217
+ Allow font caches to contain newer version numbers
1218
+ Add FcMatchScan to resolve Delicious font matching issues (bug #6769)
1219
+ Fix missing initialization/destruction of new 'scan' target subst list.
1220
+ Don't segfault when string values can't be parsed as charsets or langsets.
1221
+ Using uninitialized (and wrong) variable in FcStrCopyFilename.
1222
+ Oops; missed the 60-delicious.conf file.
1223
+
1224
+ Patrick Lam:
1225
+ Keith Packard <keithp@keithp.com>
1226
+ 2006-04-27 Paolo Borelli (pborelli@katamail.com) reviewed by: plam
1227
+ 2006-05-31 Yong Li (rigel863@gmail.com) reviewed by: plam, Bedhad Esfahbod
1228
+ 2006-07-19 Jon Burgess (jburgess@uklinux.net) reviewed by: plam
1229
+ 2006-08-04 Keith Packard (keithp@keithp.com) reviewed by: plam
1230
+
1231
+ 2.3.95
1232
+
1233
+ Match 'Standard Symbols L' for 'Symbol'. Add URW fonts as aliases for
1234
+ all of the PostScript fonts. (reported by Miguel Rodriguez). Fix a
1235
+ number of Coverity defects (Frederic Crozat). Speed up FcFontSort
1236
+ (fix suggested by Kenichi Handa). Fix error with charsets. Survive
1237
+ missing docbook2pdf. Compile on HP-UX, AIX, SGI and Windows (Cygwin,
1238
+ MinGW). Fix intel compiler warnings. Fix multiarch support (don't
1239
+ destroy multiarch files!) Require pkg-config. (Thanks Behdad; better
1240
+ solution wanted for libxml2 detection!) Fix typos in orth files and
1241
+ add orth for Lingala (reported by Denis Jacquerye). Remove debian/
1242
+ directory. Add a configuration file that disables hinting for the
1243
+ Lohit Gujarati font (since the hinting distorts some glyphs quite
1244
+ badly). Sort directory entries while scanning them from disk;
1245
+ prevents Heisenbugs due to file ordering in a directory (due to Egmont
1246
+ Koblinger). Fix Wine's problem with finding fonts. (Reported by
1247
+ Bernhard Rosenkraenzer.) Fix the issues with GNU libiconv vs. libc
1248
+ iconv (which especially appear on Solarii); patch by Behdad Esfahbod,
1249
+ approach suggested by Tim Mooney.
1250
+
1251
+ 2.3.94
1252
+
1253
+ fc-cat can take directories as input and creates old-style fonts.cache
1254
+ listings.
1255
+ fc-cache takes -r --really-force which blows away all old caches and
1256
+ regenerates.
1257
+ Robustness fixes, integer overflow fixes (notably to cache handling
1258
+ code), toast broken global cache files.
1259
+ Change binary format to make it compatible with static langset
1260
+ information (thanks to Takashi Iwai).
1261
+ Open hashed caches before fonts.cache-2 (Takashi Iwai).
1262
+ Fix FcFontSetMatch's algorithm, which used to unjustly kill fonts for
1263
+ not declaring certain elements (Takashi Iwai).
1264
+ Fix matching bug when multiple elements match; don't use
1265
+ the sum of all scores, but the best score (James Su).
1266
+ Make fc-lang more friendly to Windows systems.
1267
+ Remove archaic chars from Georgian charset; add Euro character to
1268
+ charsets for European languages.
1269
+ Fix treatment of broken PCF fonts that don't declare family names.
1270
+ Pass O_BINARY to open if appropriate (reported by Doodle).
1271
+ Normalize font directories to the form in which they appear in
1272
+ config files.
1273
+ Add a record of the cached directory to the cache file.
1274
+ Perf optimizations (Dirk Mueller; some reported by Michael Meeks.)
1275
+ Don't loop infinitely on recursive symlinks.
1276
+ Make 'make distcheck' work with automake 1.6.3.
1277
+ Replace 'stamp' target with mkinstalldirs.
1278
+ Don't stop scanning if a directory in fonts.conf doesn't exist,
1279
+ because subsequent directories might exist.
1280
+ Put directory names into global cache (reported by Ronny V. Vindenes).
1281
+ Treat zh-hk fonts differently from zh-tw fonts. This patch may cause
1282
+ fontconfig to treat A-X fonts differently from A-Y fonts; please mail
1283
+ the fontconfig list if this causes any problems.
1284
+ Fix for unaligned memory accesses (Andreas Schwab).
1285
+ Fix treatment of cache directory as read from cache file; don't use
1286
+ string equality to determine if we have the right file, use inode
1287
+ equality.
1288
+ Properly skip past dir caches that contain zero fonts, as occurs
1289
+ in global caches (reported by Mike Fabian).
1290
+ Print out full pathname in fc-match -v (reported by Frederic Crozat).
1291
+ Fix bug where fc-match crashes when given __DUMMY__ property to
1292
+ match on.
1293
+
1294
+ 2.3.93
1295
+
1296
+ Create cache files in /var/cache/fontconfig with hashed filenames, if
1297
+ possible, for added FHS compliance.
1298
+ Make fc-cat read both per-directory and global cache files.
1299
+ Add config file for Persian fonts from Sharif FarsiWeb, Inc.
1300
+ Major performance improvements by Dirk Mueller, Stephen Kulow, and Michael Matz at SuSE: in particular, speed up FcFontSetMatch, and inline many functions.
1301
+ Fix treatment of globs in config files, broken since 2.3.2 and discovered by Mathias Clasen.
1302
+ Don't use freetype internal headers (patch by Matthias Clasen).
1303
+ Further space improvements: create langsets statically, so that they can live in .rodata.
1304
+ Properly align mmapped data structures to make e.g. ia64 happy.
1305
+ Bug fixes.
1306
+
1307
+ 2.3.92
1308
+
1309
+ Fix corrupted caches bugs from 2.3.91 (reported by Mike Fabian).
1310
+ Store only basename in the cache, reconstitute on demand
1311
+ (reported by James Cloos).
1312
+ Change the rule for artificial emboldening in fonts.conf.in. This
1313
+ enables the support for artificial emboldening included in cairo
1314
+ (patch by Zhe Su).
1315
+ Add FC_EMBEDDED_BITMAP object type to tell Xft/Cairo whether
1316
+ to load embedded bitmaps or not (patch by Jinghua Luo).
1317
+ Fix GCC4 warnings (some by Behdad Esfahbod).
1318
+ Support localized font family and style names; this has been reported
1319
+ to break old apps like xfd, but modern (gtk+/qt/mozilla) apps work
1320
+ fine (patch by Zhe Su).
1321
+ Prevent fc-list from escaping strings when printing them (reported by
1322
+ Matthias Clasen).
1323
+ Add valist sentinel markup for FcObjectSetBuild and
1324
+ FcPatternBuild (patch by Marcus Meissner).
1325
+ Add consts to variables so as to move arrays into .rodata (patch by
1326
+ Ross Burton).
1327
+ Modify config file to use Greek fonts before Asian fonts with
1328
+ Greek glyphs. (patch by Simos Xenitellis).
1329
+ Use libtool -no-undefined flag on all platforms (patch by Christian
1330
+ Biesinger).
1331
+
1332
+ 2.3.91
1333
+
1334
+ Use libxml2 if requested or if expat not available. (Mathias Hasselmann)
1335
+ Fix multi-arch cache files: compute the position for the
1336
+ block to be added using info from OrigFile, not NewFile. (plam)
1337
+ Cast results of sizeof() to unsigned int to get rid of
1338
+ warnings on x86_64 (reported by Matthias Clasen).
1339
+ Use FcAtomic to rewrite cache files; don't unlink the fonts.cache-2
1340
+ file even if there's no data to write; just write an empty cache file.
1341
+ (Reported by Lubos Lunak)
1342
+ Allocate room for the subdirectory names in each directory cache.
1343
+ (Reported by James Cloos)
1344
+
1345
+ 2.3.90
1346
+
1347
+ Development release of mmap patch: load pattern information
1348
+ directly from cache files. (Patrick Lam)
1349
+
1350
+ 2.3.2
1351
+
1352
+ Patch memory leaks in using iconv. (Reported by Chris Capoccia)
1353
+ Patch memory leaks in fc-cache. (Reported by Chris Capoccia)
1354
+ Fetch bitmap glyphs to get widths during font evaluation. (keithp)
1355
+ Share strings through FcObjectStaticName (Ross Burton)
1356
+ Windows build updates (Tor Lillqvist)
1357
+
1358
+ 2.3.1
1359
+
1360
+ Be more careful about broken GSUB/GPOS tables (Manish Singh)
1361
+ Include debian packaging stuff in CVS (Josselin Mouette)
1362
+ Add more conf.d examples (Keith Packard)
1363
+ Make manuals build again (Keith Packard)
1364
+ Johap -> Johab (Funda Wang)
1365
+
1366
+ 2.3.0
1367
+
1368
+ Fix memory leak of patterns rejected by configuration (#2518)
1369
+
1370
+ Create prototype /etc/fonts/conf.d directory and populate it with a few
1371
+ sample files. These samples are unused as the file names don't start with
1372
+ numbers.
1373
+
1374
+ Update documentation.
1375
+
1376
+ 2.2.99
1377
+
1378
+ Verify cache for FC_FILE and FC_FAMILY in every entry (#2219)
1379
+
1380
+ Update blanks list from recent Unicode docs (#86)
1381
+
1382
+ Various small build fixes (#280, #2278,
1383
+
1384
+ Documentation fixes (#2085, #2284, #2285)
1385
+
1386
+ Add polite typechecking to config file loader (#229)
1387
+
1388
+ 2.2.98
1389
+
1390
+ Share object name strings (Michael Meeks)
1391
+
1392
+ Eliminate a couple of codepoints from Russian orthography (John Thacker)
1393
+
1394
+ Add synthetic emboldening configuration changes (Jakub Pavelek)
1395
+
1396
+ Change FcFontSetSort to ignore language after fonts with the requested
1397
+ languages have been found. (Owen Taylor)
1398
+
1399
+ Add some RedHat font configuration changes (Owen Tayler).
1400
+
1401
+ Add full Unicode case folding support to case-ignoring string functions
1402
+ (Keith Packard)
1403
+
1404
+ Remove Han characters from Korean orthography (Tor Andersson)
1405
+
1406
+ 2.2.97
1407
+
1408
+ Fc-cache sleeps before exiting to ensure filesystem timestamps are well
1409
+ ordered.
1410
+
1411
+ Added Punjai orthography.
1412
+
1413
+ The timestamp in fonts.conf is gone now. Too many problems.
1414
+
1415
+ The default font path includes all of the X fonts; use selectfont/rejectfont
1416
+ to eliminate bitmaps, as shown in the sample local.conf file.
1417
+
1418
+ <include> configuration elements may now reference a directory. Files
1419
+ in that directory matching [0-9]* are loaded in UTF-8 collating sequence order.
1420
+
1421
+ <selectfont> configuration added to control which fonts are used.
1422
+
1423
+ fontformat font pattern elements built from the FT_Get_X11_Font_Format
1424
+ function in newer versions of FreeType.
1425
+
1426
+ 'capability' list constructed from gsub/gpos and silf values in TrueType
1427
+ files.
1428
+
1429
+ Multi-lingual names (style, family, fullname) extracted and stored with
1430
+ parallel <foo>lang properties marking language.
1431
+
1432
+ 2.2.96
1433
+
1434
+ Fix FcConfigUpToDate to actually check all font directories and eliminate
1435
+ a typo which completely prevented it from working (Lubos Lunak
1436
+ <l.lunak@suse.cz>)
1437
+
1438
+ Remove comma at end of FcResult enum definition for picky compilers.
1439
+
1440
+ 2.2.95
1441
+
1442
+ Add FcResultOutOfMemory so FcFontSetMatch can return accurate error.
1443
+
1444
+ Replace MIN/MAX/ABS macros which happened to be in old FreeType releases
1445
+ with FC_MIN/FC_MAX/FC_ABS macros owned by fontconfig.
1446
+
1447
+ 2.2.94
1448
+
1449
+ The 2.2.93 release was prepared with a broken libtool which created
1450
+ the shared library without the '.so' in the file names.
1451
+
1452
+ 2.2.93
1453
+
1454
+ This is the third prerelease of fontconfig 2.3. Significant changes from
1455
+ 2.2.92 are:
1456
+
1457
+ o Use new FreeType #include syntax
1458
+ o use y_ppem field instead of 'height' in bitmap sizes rec -
1459
+ FreeType changed the semantics. Still uses height for
1460
+ older versions of FreeType
1461
+ o Don't construct program manuals unless docbook is available
1462
+
1463
+ 2.2.92
1464
+
1465
+ o make distcheck work
1466
+
1467
+ 2.2.91
1468
+
1469
+ o Switch to SGML manuals
1470
+ o Add FC_DUAL width spacing value
1471
+ o Add FcFini to close out fontconfig and release all memory
1472
+
1473
+ 2.2
1474
+
1475
+ This is the third public release of fontconfig, a font configuration and
1476
+ customization library. Fontconfig is designed to locate fonts within the
1477
+ system and select them according to requirements specified by applications.
1478
+
1479
+ Fontconfig is not a rasterization library, nor does it impose a particular
1480
+ rasterization library on the application. The X-specific library
1481
+ 'Xft' uses fontconfig along with freetype to specify and rasterize fonts.
1482
+
1483
+ Keith Packard
1484
+ keithp@keithp.com