cairo 1.10.0-x86-mingw32 → 1.10.1-x86-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 (560) hide show
  1. data/Gemfile +14 -0
  2. data/NEWS +33 -0
  3. data/README.rdoc +115 -0
  4. data/Rakefile +69 -80
  5. data/ext/cairo/cairo.def +1 -1
  6. data/ext/cairo/depend +2 -0
  7. data/ext/cairo/extconf.rb +7 -5
  8. data/ext/cairo/rb_cairo.c +4 -1
  9. data/ext/cairo/rb_cairo.h +4 -0
  10. data/ext/cairo/rb_cairo_constants.c +6 -2
  11. data/ext/cairo/rb_cairo_context.c +3 -2
  12. data/ext/cairo/rb_cairo_device.c +8 -0
  13. data/ext/cairo/rb_cairo_font_face.c +1 -1
  14. data/ext/cairo/rb_cairo_surface.c +40 -0
  15. data/lib/1.8/cairo.so +0 -0
  16. data/lib/1.9/cairo.so +0 -0
  17. data/lib/cairo.rb +3 -3
  18. data/lib/cairo/color.rb +4 -4
  19. data/lib/cairo/context/path.rb +2 -1
  20. data/test/run-test.rb +1 -1
  21. data/test/test_context.rb +1 -1
  22. data/test/test_font_face.rb +1 -1
  23. data/test/test_recording_surface.rb +4 -1
  24. data/test/test_xml_surface.rb +2 -1
  25. data/vendor/local/bin/fc-cache.exe +0 -0
  26. data/vendor/local/bin/fc-cat.exe +0 -0
  27. data/vendor/local/bin/fc-list.exe +0 -0
  28. data/vendor/local/bin/freetype-config +160 -0
  29. data/vendor/local/bin/libcairo-2.dll +0 -0
  30. data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
  31. data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
  32. data/vendor/local/bin/xmlwf.exe +0 -0
  33. data/vendor/local/etc/fonts/fonts.dtd +224 -0
  34. data/vendor/local/include/cairo/cairo-version.h +1 -1
  35. data/vendor/local/include/cairo/cairo.h +1 -1
  36. data/vendor/local/include/expat.h +1014 -0
  37. data/vendor/local/include/expat_external.h +115 -0
  38. data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
  39. data/vendor/local/include/fontconfig/fcprivate.h +123 -0
  40. data/vendor/local/include/fontconfig/fontconfig.h +963 -0
  41. data/vendor/local/include/freetype2/freetype/config/ftconfig.h +477 -0
  42. data/vendor/local/include/freetype2/freetype/config/ftheader.h +780 -0
  43. data/vendor/local/include/freetype2/freetype/config/ftmodule.h +20 -0
  44. data/vendor/local/include/freetype2/freetype/config/ftoption.h +733 -0
  45. data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +173 -0
  46. data/vendor/local/include/freetype2/freetype/freetype.h +3919 -0
  47. data/vendor/local/include/freetype2/freetype/ftadvanc.h +179 -0
  48. data/vendor/local/include/freetype2/freetype/ftbbox.h +94 -0
  49. data/vendor/local/include/freetype2/freetype/ftbdf.h +209 -0
  50. data/vendor/local/include/freetype2/freetype/ftbitmap.h +227 -0
  51. data/vendor/local/include/freetype2/freetype/ftcache.h +1125 -0
  52. data/vendor/local/include/freetype2/freetype/ftchapters.h +103 -0
  53. data/vendor/local/include/freetype2/freetype/ftcid.h +166 -0
  54. data/vendor/local/include/freetype2/freetype/fterrdef.h +244 -0
  55. data/vendor/local/include/freetype2/freetype/fterrors.h +206 -0
  56. data/vendor/local/include/freetype2/freetype/ftgasp.h +120 -0
  57. data/vendor/local/include/freetype2/freetype/ftglyph.h +613 -0
  58. data/vendor/local/include/freetype2/freetype/ftgxval.h +358 -0
  59. data/vendor/local/include/freetype2/freetype/ftgzip.h +102 -0
  60. data/vendor/local/include/freetype2/freetype/ftimage.h +1301 -0
  61. data/vendor/local/include/freetype2/freetype/ftincrem.h +353 -0
  62. data/vendor/local/include/freetype2/freetype/ftlcdfil.h +213 -0
  63. data/vendor/local/include/freetype2/freetype/ftlist.h +277 -0
  64. data/vendor/local/include/freetype2/freetype/ftlzw.h +99 -0
  65. data/vendor/local/include/freetype2/freetype/ftmac.h +274 -0
  66. data/vendor/local/include/freetype2/freetype/ftmm.h +378 -0
  67. data/vendor/local/include/freetype2/freetype/ftmodapi.h +483 -0
  68. data/vendor/local/include/freetype2/freetype/ftmoderr.h +155 -0
  69. data/vendor/local/include/freetype2/freetype/ftotval.h +203 -0
  70. data/vendor/local/include/freetype2/freetype/ftoutln.h +537 -0
  71. data/vendor/local/include/freetype2/freetype/ftpfr.h +172 -0
  72. data/vendor/local/include/freetype2/freetype/ftrender.h +230 -0
  73. data/vendor/local/include/freetype2/freetype/ftsizes.h +159 -0
  74. data/vendor/local/include/freetype2/freetype/ftsnames.h +200 -0
  75. data/vendor/local/include/freetype2/freetype/ftstroke.h +716 -0
  76. data/vendor/local/include/freetype2/freetype/ftsynth.h +80 -0
  77. data/vendor/local/include/freetype2/freetype/ftsystem.h +347 -0
  78. data/vendor/local/include/freetype2/freetype/fttrigon.h +350 -0
  79. data/vendor/local/include/freetype2/freetype/fttypes.h +588 -0
  80. data/vendor/local/include/freetype2/freetype/ftwinfnt.h +274 -0
  81. data/vendor/local/include/freetype2/freetype/ftxf86.h +83 -0
  82. data/vendor/local/include/freetype2/freetype/t1tables.h +504 -0
  83. data/vendor/local/include/freetype2/freetype/ttnameid.h +1247 -0
  84. data/vendor/local/include/freetype2/freetype/tttables.h +759 -0
  85. data/vendor/local/include/freetype2/freetype/tttags.h +107 -0
  86. data/vendor/local/include/freetype2/freetype/ttunpat.h +59 -0
  87. data/vendor/local/include/ft2build.h +61 -0
  88. data/vendor/local/include/libpng14/png.h +2701 -0
  89. data/vendor/local/include/libpng14/pngconf.h +1525 -0
  90. data/vendor/local/include/png.h +2701 -0
  91. data/vendor/local/include/pngconf.h +1525 -0
  92. data/vendor/local/include/zconf.h +461 -0
  93. data/vendor/local/include/zlib.h +1589 -0
  94. data/vendor/local/lib/cairo.lib +0 -0
  95. data/vendor/local/lib/expat.lib +0 -0
  96. data/vendor/local/lib/fontconfig.def +195 -0
  97. data/vendor/local/lib/fontconfig.lib +0 -0
  98. data/vendor/local/lib/freetype.def +186 -0
  99. data/vendor/local/lib/freetype.lib +0 -0
  100. data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
  101. data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
  102. data/vendor/local/lib/libcairo.dll.a +0 -0
  103. data/vendor/local/lib/libexpat.def +73 -0
  104. data/vendor/local/lib/libexpat.dll.a +0 -0
  105. data/vendor/local/lib/libfontconfig.dll.a +0 -0
  106. data/vendor/local/lib/libfreetype.dll.a +0 -0
  107. data/vendor/local/lib/libpng.def +192 -0
  108. data/vendor/local/lib/libpng.lib +0 -0
  109. data/vendor/local/lib/libpng14.dll.a +0 -0
  110. data/vendor/local/lib/libz.dll.a +0 -0
  111. data/vendor/local/lib/pkgconfig/cairo-fc.pc +2 -2
  112. data/vendor/local/lib/pkgconfig/cairo-ft.pc +2 -2
  113. data/vendor/local/lib/pkgconfig/cairo-gobject.pc +2 -2
  114. data/vendor/local/lib/pkgconfig/cairo-pdf.pc +2 -2
  115. data/vendor/local/lib/pkgconfig/cairo-png.pc +2 -2
  116. data/vendor/local/lib/pkgconfig/cairo-ps.pc +2 -2
  117. data/vendor/local/lib/pkgconfig/cairo-svg.pc +2 -2
  118. data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +2 -2
  119. data/vendor/local/lib/pkgconfig/cairo-win32.pc +2 -2
  120. data/vendor/local/lib/pkgconfig/cairo.pc +2 -2
  121. data/vendor/local/lib/pkgconfig/fontconfig.pc +11 -0
  122. data/vendor/local/lib/pkgconfig/freetype2.pc +12 -0
  123. data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
  124. data/vendor/local/lib/pkgconfig/libpng14.pc +11 -0
  125. data/vendor/local/lib/zdll.lib +0 -0
  126. data/vendor/local/lib/zlib.def +67 -0
  127. data/vendor/local/man/man1/xmlwf.1 +251 -0
  128. data/vendor/local/manifest/{cairo-dev_1.10.0-1_win32.mft → cairo-dev_1.10.2-1_win32.mft} +6 -3
  129. data/vendor/local/manifest/cairo_1.10.2-1_win32.mft +7 -0
  130. data/vendor/local/manifest/expat-dev_2.0.1-1_win32.mft +10 -0
  131. data/vendor/local/manifest/fontconfig-dev_2.8.0-2_win32.mft +387 -0
  132. data/vendor/local/manifest/freetype-dev_2.4.2-1_win32.mft +56 -0
  133. data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +15 -0
  134. data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +8 -0
  135. data/vendor/local/share/aclocal/freetype2.m4 +194 -0
  136. data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING +0 -0
  137. data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING-LGPL-2.1 +0 -0
  138. data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING-MPL-1.1 +0 -0
  139. data/vendor/local/share/doc/fontconfig/fontconfig-devel.pdf +42484 -4
  140. data/vendor/local/share/doc/fontconfig/fontconfig-devel.txt +5046 -0
  141. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiccreate.html +224 -0
  142. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdeletenew.html +216 -0
  143. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdestroy.html +210 -0
  144. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiclock.html +223 -0
  145. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicnewfile.html +222 -0
  146. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicorigfile.html +221 -0
  147. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicreplaceorig.html +223 -0
  148. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicunlock.html +216 -0
  149. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksadd.html +222 -0
  150. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblankscreate.html +216 -0
  151. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksdestroy.html +216 -0
  152. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksismember.html +211 -0
  153. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachecopyset.html +228 -0
  154. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachedir.html +221 -0
  155. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumfont.html +211 -0
  156. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumsubdir.html +221 -0
  157. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachesubdir.html +244 -0
  158. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetaddchar.html +226 -0
  159. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcopy.html +227 -0
  160. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcount.html +221 -0
  161. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcoverage.html +249 -0
  162. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcreate.html +220 -0
  163. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetdestroy.html +226 -0
  164. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetequal.html +232 -0
  165. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetfirstpage.html +238 -0
  166. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsethaschar.html +231 -0
  167. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersect.html +232 -0
  168. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersectcount.html +231 -0
  169. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetissubset.html +231 -0
  170. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetmerge.html +261 -0
  171. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnew.html +208 -0
  172. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnextpage.html +243 -0
  173. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtract.html +231 -0
  174. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtractcount.html +231 -0
  175. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetunion.html +231 -0
  176. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontadddir.html +229 -0
  177. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontaddfile.html +228 -0
  178. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontclear.html +222 -0
  179. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigbuildfonts.html +224 -0
  180. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigcreate.html +216 -0
  181. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigdestroy.html +219 -0
  182. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigenablehome.html +230 -0
  183. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigfilename.html +237 -0
  184. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetblanks.html +225 -0
  185. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcache.html +217 -0
  186. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcachedirs.html +227 -0
  187. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigdirs.html +228 -0
  188. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigfiles.html +227 -0
  189. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcurrent.html +216 -0
  190. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfontdirs.html +229 -0
  191. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfonts.html +234 -0
  192. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetrescaninterval.html +230 -0
  193. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfighome.html +221 -0
  194. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigparseandload.html +220 -0
  195. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigreference.html +231 -0
  196. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetcurrent.html +222 -0
  197. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetrescaninterval.html +229 -0
  198. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitute.html +233 -0
  199. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitutewithpat.html +251 -0
  200. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiguptodate.html +228 -0
  201. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdefaultsubstitute.html +234 -0
  202. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheload.html +239 -0
  203. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheloadfile.html +233 -0
  204. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheread.html +239 -0
  205. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunlink.html +239 -0
  206. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunload.html +211 -0
  207. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircachevalid.html +222 -0
  208. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirsave.html +245 -0
  209. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirscan.html +266 -0
  210. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfileisdir.html +222 -0
  211. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfilescan.html +276 -0
  212. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfini.html +219 -0
  213. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontlist.html +244 -0
  214. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontmatch.html +262 -0
  215. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontrenderprepare.html +259 -0
  216. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetadd.html +223 -0
  217. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetcreate.html +216 -0
  218. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetdestroy.html +217 -0
  219. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetlist.html +261 -0
  220. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetmatch.html +273 -0
  221. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetprint.html +224 -0
  222. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsort.html +303 -0
  223. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsortdestroy.html +222 -0
  224. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsort.html +289 -0
  225. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharindex.html +226 -0
  226. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharset.html +225 -0
  227. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharsetandspacing.html +241 -0
  228. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequery.html +233 -0
  229. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequeryface.html +222 -0
  230. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetlangs.html +216 -0
  231. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetversion.html +216 -0
  232. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinit.html +219 -0
  233. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitbringuptodate.html +208 -0
  234. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfig.html +217 -0
  235. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfigandfonts.html +217 -0
  236. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitreinitialize.html +219 -0
  237. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcislower.html +222 -0
  238. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcisupper.html +222 -0
  239. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclanggetcharset.html +205 -0
  240. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetadd.html +239 -0
  241. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcompare.html +239 -0
  242. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcontains.html +259 -0
  243. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcopy.html +225 -0
  244. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcreate.html +219 -0
  245. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetdestroy.html +220 -0
  246. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetequal.html +232 -0
  247. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetgetlangs.html +221 -0
  248. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethash.html +233 -0
  249. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethaslang.html +255 -0
  250. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixcopy.html +225 -0
  251. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixequal.html +236 -0
  252. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixinit.html +225 -0
  253. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixmultiply.html +246 -0
  254. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixrotate.html +261 -0
  255. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixscale.html +261 -0
  256. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixshear.html +250 -0
  257. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameconstant.html +221 -0
  258. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetconstant.html +221 -0
  259. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetobjecttype.html +210 -0
  260. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameparse.html +221 -0
  261. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterconstants.html +228 -0
  262. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterobjecttypes.html +228 -0
  263. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunparse.html +218 -0
  264. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterconstants.html +228 -0
  265. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterobjecttypes.html +226 -0
  266. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetadd.html +222 -0
  267. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetbuild.html +262 -0
  268. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetcreate.html +216 -0
  269. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetdestroy.html +216 -0
  270. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd-type.html +404 -0
  271. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd.html +240 -0
  272. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternaddweak.html +242 -0
  273. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternbuild.html +313 -0
  274. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterncreate.html +216 -0
  275. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndel.html +222 -0
  276. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndestroy.html +217 -0
  277. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternduplicate.html +223 -0
  278. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequal.html +231 -0
  279. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequalsubset.html +242 -0
  280. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternfilter.html +244 -0
  281. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternformat.html +602 -0
  282. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget-type.html +435 -0
  283. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget.html +249 -0
  284. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternhash.html +217 -0
  285. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternprint.html +218 -0
  286. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternreference.html +222 -0
  287. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternremove.html +227 -0
  288. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrbasename.html +212 -0
  289. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmp.html +232 -0
  290. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmpignorecase.html +233 -0
  291. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopy.html +226 -0
  292. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopyfilename.html +234 -0
  293. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdirname.html +223 -0
  294. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdowncase.html +222 -0
  295. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrfree.html +217 -0
  296. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistcreate.html +221 -0
  297. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistdone.html +210 -0
  298. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistnext.html +221 -0
  299. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrplus.html +233 -0
  300. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetadd.html +231 -0
  301. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetaddfilename.html +233 -0
  302. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetcreate.html +216 -0
  303. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdel.html +237 -0
  304. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdestroy.html +221 -0
  305. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetequal.html +233 -0
  306. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetmember.html +232 -0
  307. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstr.html +244 -0
  308. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstrignorecase.html +244 -0
  309. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fctolower.html +222 -0
  310. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcucs4toutf8.html +233 -0
  311. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16len.html +278 -0
  312. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16toucs4.html +265 -0
  313. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8len.html +261 -0
  314. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8toucs4.html +249 -0
  315. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluedestroy.html +222 -0
  316. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueequal.html +212 -0
  317. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueprint.html +223 -0
  318. data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluesave.html +227 -0
  319. data/vendor/local/share/doc/fontconfig/fontconfig-devel/ln12.html +128 -0
  320. data/vendor/local/share/doc/fontconfig/fontconfig-devel/t1.html +133 -0
  321. data/vendor/local/share/doc/fontconfig/fontconfig-devel/x102.html +1463 -0
  322. data/vendor/local/share/doc/fontconfig/fontconfig-devel/x19.html +264 -0
  323. data/vendor/local/share/doc/fontconfig/fontconfig-devel/x31.html +590 -0
  324. data/vendor/local/share/doc/fontconfig/fontconfig-user.html +1352 -0
  325. data/vendor/local/share/doc/fontconfig/fontconfig-user.pdf +0 -0
  326. data/vendor/local/share/doc/fontconfig/fontconfig-user.txt +644 -0
  327. data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +11 -28
  328. data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +10 -26
  329. data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +42 -99
  330. data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +22 -47
  331. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +1 -2
  332. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +5 -15
  333. data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +201 -0
  334. data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +5 -15
  335. data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +43 -113
  336. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +1 -2
  337. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +3 -4
  338. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +21 -48
  339. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +8 -26
  340. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +61 -148
  341. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +19 -45
  342. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +15 -39
  343. data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +3 -0
  344. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +6 -2
  345. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +6 -2
  346. data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +9 -0
  347. data/vendor/local/share/gtk-doc/html/cairo/index-all.html +6 -0
  348. data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -1
  349. data/vendor/local/share/gtk-doc/html/cairo/index.sgml +8 -0
  350. data/vendor/local/share/man/man1/fc-cache.1 +70 -0
  351. data/vendor/local/share/man/man1/fc-cat.1 +44 -0
  352. data/vendor/local/share/man/man1/fc-list.1 +72 -0
  353. data/vendor/local/share/man/man1/fc-match.1 +73 -0
  354. data/vendor/local/share/man/man1/fc-query.1 +57 -0
  355. data/vendor/local/share/man/man1/fc-scan.1 +52 -0
  356. data/vendor/local/share/man/man3/FcAtomicCreate.3 +19 -0
  357. data/vendor/local/share/man/man3/FcAtomicDeleteNew.3 +16 -0
  358. data/vendor/local/share/man/man3/FcAtomicDestroy.3 +16 -0
  359. data/vendor/local/share/man/man3/FcAtomicLock.3 +18 -0
  360. data/vendor/local/share/man/man3/FcAtomicNewFile.3 +17 -0
  361. data/vendor/local/share/man/man3/FcAtomicOrigFile.3 +16 -0
  362. data/vendor/local/share/man/man3/FcAtomicReplaceOrig.3 +18 -0
  363. data/vendor/local/share/man/man3/FcAtomicUnlock.3 +16 -0
  364. data/vendor/local/share/man/man3/FcBlanksAdd.3 +18 -0
  365. data/vendor/local/share/man/man3/FcBlanksCreate.3 +16 -0
  366. data/vendor/local/share/man/man3/FcBlanksDestroy.3 +16 -0
  367. data/vendor/local/share/man/man3/FcBlanksIsMember.3 +18 -0
  368. data/vendor/local/share/man/man3/FcCacheCopySet.3 +18 -0
  369. data/vendor/local/share/man/man3/FcCacheDir.3 +16 -0
  370. data/vendor/local/share/man/man3/FcCacheNumFont.3 +17 -0
  371. data/vendor/local/share/man/man3/FcCacheNumSubdir.3 +16 -0
  372. data/vendor/local/share/man/man3/FcCacheSubdir.3 +20 -0
  373. data/vendor/local/share/man/man3/FcCharSetAddChar.3 +19 -0
  374. data/vendor/local/share/man/man3/FcCharSetCopy.3 +17 -0
  375. data/vendor/local/share/man/man3/FcCharSetCount.3 +16 -0
  376. data/vendor/local/share/man/man3/FcCharSetCoverage.3 +23 -0
  377. data/vendor/local/share/man/man3/FcCharSetCreate.3 +17 -0
  378. data/vendor/local/share/man/man3/FcCharSetDestroy.3 +18 -0
  379. data/vendor/local/share/man/man3/FcCharSetEqual.3 +18 -0
  380. data/vendor/local/share/man/man3/FcCharSetFirstPage.3 +20 -0
  381. data/vendor/local/share/man/man3/FcCharSetHasChar.3 +17 -0
  382. data/vendor/local/share/man/man3/FcCharSetIntersect.3 +18 -0
  383. data/vendor/local/share/man/man3/FcCharSetIntersectCount.3 +17 -0
  384. data/vendor/local/share/man/man3/FcCharSetIsSubset.3 +17 -0
  385. data/vendor/local/share/man/man3/FcCharSetMerge.3 +23 -0
  386. data/vendor/local/share/man/man3/FcCharSetNew.3 +16 -0
  387. data/vendor/local/share/man/man3/FcCharSetNextPage.3 +20 -0
  388. data/vendor/local/share/man/man3/FcCharSetSubtract.3 +17 -0
  389. data/vendor/local/share/man/man3/FcCharSetSubtractCount.3 +17 -0
  390. data/vendor/local/share/man/man3/FcCharSetUnion.3 +17 -0
  391. data/vendor/local/share/man/man3/FcConfigAppFontAddDir.3 +20 -0
  392. data/vendor/local/share/man/man3/FcConfigAppFontAddFile.3 +19 -0
  393. data/vendor/local/share/man/man3/FcConfigAppFontClear.3 +17 -0
  394. data/vendor/local/share/man/man3/FcConfigBuildFonts.3 +19 -0
  395. data/vendor/local/share/man/man3/FcConfigCreate.3 +16 -0
  396. data/vendor/local/share/man/man3/FcConfigDestroy.3 +19 -0
  397. data/vendor/local/share/man/man3/FcConfigEnableHome.3 +20 -0
  398. data/vendor/local/share/man/man3/FcConfigFilename.3 +26 -0
  399. data/vendor/local/share/man/man3/FcConfigGetBlanks.3 +20 -0
  400. data/vendor/local/share/man/man3/FcConfigGetCache.3 +17 -0
  401. data/vendor/local/share/man/man3/FcConfigGetCacheDirs.3 +19 -0
  402. data/vendor/local/share/man/man3/FcConfigGetConfigDirs.3 +18 -0
  403. data/vendor/local/share/man/man3/FcConfigGetConfigFiles.3 +17 -0
  404. data/vendor/local/share/man/man3/FcConfigGetCurrent.3 +16 -0
  405. data/vendor/local/share/man/man3/FcConfigGetFontDirs.3 +19 -0
  406. data/vendor/local/share/man/man3/FcConfigGetFonts.3 +20 -0
  407. data/vendor/local/share/man/man3/FcConfigGetRescanInterval.3 +20 -0
  408. data/vendor/local/share/man/man3/FcConfigHome.3 +18 -0
  409. data/vendor/local/share/man/man3/FcConfigParseAndLoad.3 +23 -0
  410. data/vendor/local/share/man/man3/FcConfigReference.3 +21 -0
  411. data/vendor/local/share/man/man3/FcConfigSetCurrent.3 +17 -0
  412. data/vendor/local/share/man/man3/FcConfigSetRescanInterval.3 +20 -0
  413. data/vendor/local/share/man/man3/FcConfigSubstitute.3 +20 -0
  414. data/vendor/local/share/man/man3/FcConfigSubstituteWithPat.3 +24 -0
  415. data/vendor/local/share/man/man3/FcConfigUptoDate.3 +18 -0
  416. data/vendor/local/share/man/man3/FcDefaultSubstitute.3 +27 -0
  417. data/vendor/local/share/man/man3/FcDirCacheLoad.3 +21 -0
  418. data/vendor/local/share/man/man3/FcDirCacheLoadFile.3 +19 -0
  419. data/vendor/local/share/man/man3/FcDirCacheRead.3 +21 -0
  420. data/vendor/local/share/man/man3/FcDirCacheUnlink.3 +20 -0
  421. data/vendor/local/share/man/man3/FcDirCacheUnload.3 +17 -0
  422. data/vendor/local/share/man/man3/FcDirCacheValid.3 +17 -0
  423. data/vendor/local/share/man/man3/FcDirSave.3 +22 -0
  424. data/vendor/local/share/man/man3/FcDirScan.3 +26 -0
  425. data/vendor/local/share/man/man3/FcFileIsDir.3 +17 -0
  426. data/vendor/local/share/man/man3/FcFileScan.3 +31 -0
  427. data/vendor/local/share/man/man3/FcFini.3 +19 -0
  428. data/vendor/local/share/man/man3/FcFontList.3 +21 -0
  429. data/vendor/local/share/man/man3/FcFontMatch.3 +25 -0
  430. data/vendor/local/share/man/man3/FcFontRenderPrepare.3 +21 -0
  431. data/vendor/local/share/man/man3/FcFontSetAdd.3 +19 -0
  432. data/vendor/local/share/man/man3/FcFontSetCreate.3 +16 -0
  433. data/vendor/local/share/man/man3/FcFontSetDestroy.3 +17 -0
  434. data/vendor/local/share/man/man3/FcFontSetList.3 +25 -0
  435. data/vendor/local/share/man/man3/FcFontSetMatch.3 +28 -0
  436. data/vendor/local/share/man/man3/FcFontSetPrint.3 +19 -0
  437. data/vendor/local/share/man/man3/FcFontSetSort.3 +39 -0
  438. data/vendor/local/share/man/man3/FcFontSetSortDestroy.3 +19 -0
  439. data/vendor/local/share/man/man3/FcFontSort.3 +33 -0
  440. data/vendor/local/share/man/man3/FcFreeTypeCharIndex.3 +22 -0
  441. data/vendor/local/share/man/man3/FcFreeTypeCharSet.3 +21 -0
  442. data/vendor/local/share/man/man3/FcFreeTypeCharSetAndSpacing.3 +28 -0
  443. data/vendor/local/share/man/man3/FcFreeTypeQuery.3 +21 -0
  444. data/vendor/local/share/man/man3/FcFreeTypeQueryFace.3 +21 -0
  445. data/vendor/local/share/man/man3/FcGetLangs.3 +16 -0
  446. data/vendor/local/share/man/man3/FcGetVersion.3 +16 -0
  447. data/vendor/local/share/man/man3/FcInit.3 +19 -0
  448. data/vendor/local/share/man/man3/FcInitBringUptoDate.3 +19 -0
  449. data/vendor/local/share/man/man3/FcInitLoadConfig.3 +17 -0
  450. data/vendor/local/share/man/man3/FcInitLoadConfigAndFonts.3 +17 -0
  451. data/vendor/local/share/man/man3/FcInitReinitialize.3 +19 -0
  452. data/vendor/local/share/man/man3/FcIsLower.3 +17 -0
  453. data/vendor/local/share/man/man3/FcIsUpper.3 +17 -0
  454. data/vendor/local/share/man/man3/FcLangGetCharSet.3 +16 -0
  455. data/vendor/local/share/man/man3/FcLangSetAdd.3 +20 -0
  456. data/vendor/local/share/man/man3/FcLangSetCompare.3 +22 -0
  457. data/vendor/local/share/man/man3/FcLangSetContains.3 +22 -0
  458. data/vendor/local/share/man/man3/FcLangSetCopy.3 +17 -0
  459. data/vendor/local/share/man/man3/FcLangSetCreate.3 +16 -0
  460. data/vendor/local/share/man/man3/FcLangSetDestroy.3 +17 -0
  461. data/vendor/local/share/man/man3/FcLangSetEqual.3 +18 -0
  462. data/vendor/local/share/man/man3/FcLangSetGetLangs.3 +16 -0
  463. data/vendor/local/share/man/man3/FcLangSetHasLang.3 +23 -0
  464. data/vendor/local/share/man/man3/FcLangSetHash.3 +20 -0
  465. data/vendor/local/share/man/man3/FcMatrixCopy.3 +17 -0
  466. data/vendor/local/share/man/man3/FcMatrixEqual.3 +19 -0
  467. data/vendor/local/share/man/man3/FcMatrixInit.3 +17 -0
  468. data/vendor/local/share/man/man3/FcMatrixMultiply.3 +20 -0
  469. data/vendor/local/share/man/man3/FcMatrixRotate.3 +27 -0
  470. data/vendor/local/share/man/man3/FcMatrixScale.3 +27 -0
  471. data/vendor/local/share/man/man3/FcMatrixShear.3 +27 -0
  472. data/vendor/local/share/man/man3/FcNameConstant.3 +18 -0
  473. data/vendor/local/share/man/man3/FcNameGetConstant.3 +16 -0
  474. data/vendor/local/share/man/man3/FcNameGetObjectType.3 +16 -0
  475. data/vendor/local/share/man/man3/FcNameParse.3 +16 -0
  476. data/vendor/local/share/man/man3/FcNameRegisterConstants.3 +19 -0
  477. data/vendor/local/share/man/man3/FcNameRegisterObjectTypes.3 +19 -0
  478. data/vendor/local/share/man/man3/FcNameUnparse.3 +18 -0
  479. data/vendor/local/share/man/man3/FcNameUnregisterConstants.3 +19 -0
  480. data/vendor/local/share/man/man3/FcNameUnregisterObjectTypes.3 +17 -0
  481. data/vendor/local/share/man/man3/FcObjectSetAdd.3 +18 -0
  482. data/vendor/local/share/man/man3/FcObjectSetBuild.3 +26 -0
  483. data/vendor/local/share/man/man3/FcObjectSetCreate.3 +16 -0
  484. data/vendor/local/share/man/man3/FcObjectSetDestroy.3 +16 -0
  485. data/vendor/local/share/man/man3/FcPatternAdd-Type.3 +49 -0
  486. data/vendor/local/share/man/man3/FcPatternAdd.3 +23 -0
  487. data/vendor/local/share/man/man3/FcPatternAddWeak.3 +20 -0
  488. data/vendor/local/share/man/man3/FcPatternBuild.3 +50 -0
  489. data/vendor/local/share/man/man3/FcPatternCreate.3 +16 -0
  490. data/vendor/local/share/man/man3/FcPatternDel.3 +18 -0
  491. data/vendor/local/share/man/man3/FcPatternDestroy.3 +17 -0
  492. data/vendor/local/share/man/man3/FcPatternDuplicate.3 +18 -0
  493. data/vendor/local/share/man/man3/FcPatternEqual.3 +17 -0
  494. data/vendor/local/share/man/man3/FcPatternEqualSubset.3 +19 -0
  495. data/vendor/local/share/man/man3/FcPatternFilter.3 +20 -0
  496. data/vendor/local/share/man/man3/FcPatternFormat.3 +205 -0
  497. data/vendor/local/share/man/man3/FcPatternGet-Type.3 +56 -0
  498. data/vendor/local/share/man/man3/FcPatternGet.3 +22 -0
  499. data/vendor/local/share/man/man3/FcPatternHash.3 +17 -0
  500. data/vendor/local/share/man/man3/FcPatternPrint.3 +18 -0
  501. data/vendor/local/share/man/man3/FcPatternReference.3 +17 -0
  502. data/vendor/local/share/man/man3/FcPatternRemove.3 +19 -0
  503. data/vendor/local/share/man/man3/FcStrBasename.3 +18 -0
  504. data/vendor/local/share/man/man3/FcStrCmp.3 +18 -0
  505. data/vendor/local/share/man/man3/FcStrCmpIgnoreCase.3 +19 -0
  506. data/vendor/local/share/man/man3/FcStrCopy.3 +18 -0
  507. data/vendor/local/share/man/man3/FcStrCopyFilename.3 +23 -0
  508. data/vendor/local/share/man/man3/FcStrDirname.3 +18 -0
  509. data/vendor/local/share/man/man3/FcStrDowncase.3 +17 -0
  510. data/vendor/local/share/man/man3/FcStrFree.3 +17 -0
  511. data/vendor/local/share/man/man3/FcStrListCreate.3 +16 -0
  512. data/vendor/local/share/man/man3/FcStrListDone.3 +16 -0
  513. data/vendor/local/share/man/man3/FcStrListNext.3 +16 -0
  514. data/vendor/local/share/man/man3/FcStrPlus.3 +19 -0
  515. data/vendor/local/share/man/man3/FcStrSetAdd.3 +17 -0
  516. data/vendor/local/share/man/man3/FcStrSetAddFilename.3 +19 -0
  517. data/vendor/local/share/man/man3/FcStrSetCreate.3 +16 -0
  518. data/vendor/local/share/man/man3/FcStrSetDel.3 +18 -0
  519. data/vendor/local/share/man/man3/FcStrSetDestroy.3 +16 -0
  520. data/vendor/local/share/man/man3/FcStrSetEqual.3 +19 -0
  521. data/vendor/local/share/man/man3/FcStrSetMember.3 +18 -0
  522. data/vendor/local/share/man/man3/FcStrStr.3 +20 -0
  523. data/vendor/local/share/man/man3/FcStrStrIgnoreCase.3 +20 -0
  524. data/vendor/local/share/man/man3/FcToLower.3 +17 -0
  525. data/vendor/local/share/man/man3/FcUcs4ToUtf8.3 +19 -0
  526. data/vendor/local/share/man/man3/FcUtf16Len.3 +27 -0
  527. data/vendor/local/share/man/man3/FcUtf16ToUcs4.3 +23 -0
  528. data/vendor/local/share/man/man3/FcUtf8Len.3 +24 -0
  529. data/vendor/local/share/man/man3/FcUtf8ToUcs4.3 +21 -0
  530. data/vendor/local/share/man/man3/FcValueDestroy.3 +17 -0
  531. data/vendor/local/share/man/man3/FcValueEqual.3 +19 -0
  532. data/vendor/local/share/man/man3/FcValuePrint.3 +18 -0
  533. data/vendor/local/share/man/man3/FcValueSave.3 +17 -0
  534. data/vendor/local/share/man/man3/libpng.3 +4455 -0
  535. data/vendor/local/share/man/man3/libpngpf.3 +808 -0
  536. data/vendor/local/share/man/man5/fonts-conf.5 +644 -0
  537. data/vendor/local/share/man/man5/png.5 +74 -0
  538. data/vendor/local/src/tml/packaging/{cairo_1.10.0-1_win32.log → cairo_1.10.2-1_win32.log} +242 -235
  539. data/vendor/local/src/tml/packaging/{cairo_1.10.0-1_win32.sh → cairo_1.10.2-1_win32.sh} +11 -3
  540. data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.log +188 -0
  541. data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.sh +68 -0
  542. data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.log +999 -0
  543. data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.sh +79 -0
  544. data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.log +364 -0
  545. data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.sh +93 -0
  546. data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +272 -0
  547. data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +71 -0
  548. data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +42 -0
  549. data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +189 -0
  550. metadata +586 -122
  551. data/extconf.rb +0 -45
  552. data/misc/update-colors.rb +0 -143
  553. data/samples/agg/README +0 -4
  554. data/tmp/i386-mingw32/cairo/1.8.7/fake.rb +0 -6
  555. data/tmp/i386-mingw32/cairo/1.8.7/mkmf.rb +0 -1836
  556. data/tmp/i386-mingw32/cairo/1.8.7/rbconfig.rb +0 -183
  557. data/tmp/i386-mingw32/cairo/1.9.2/fake.rb +0 -6
  558. data/tmp/i386-mingw32/cairo/1.9.2/mkmf.rb +0 -2079
  559. data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +0 -226
  560. data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +0 -5
@@ -3,7 +3,7 @@
3
3
  # usable unmodified by others, and is included only for reference.
4
4
 
5
5
  MOD=cairo
6
- VER=1.10.0
6
+ VER=1.10.2
7
7
  REV=1
8
8
  ARCH=win32
9
9
 
@@ -32,7 +32,7 @@ sed -e 's/need_relink=yes/need_relink=no # no way --tml/' <build/ltmain.sh >buil
32
32
 
33
33
  sed -e 's!file /!dont-want-to-use-file!' <configure >configure.temp && mv configure.temp configure
34
34
 
35
- DEPS=`latest --arch=${ARCH} glib pkg-config pixman libpng fontconfig freetype`
35
+ DEPS=`latest --arch=${ARCH} gettext-runtime glib pkg-config pixman libpng fontconfig freetype`
36
36
 
37
37
  PKG_CONFIG_PATH=/dummy
38
38
  for D in $DEPS; do
@@ -40,12 +40,14 @@ for D in $DEPS; do
40
40
  PKG_CONFIG_PATH=/devel/dist/${ARCH}/$D/lib/pkgconfig:$PKG_CONFIG_PATH
41
41
  done
42
42
 
43
+ GETTEXT_RUNTIME=`latest --arch=${ARCH} gettext-runtime`
43
44
  ZLIB=`latest --arch=${ARCH} zlib`
44
45
 
45
46
  png_REQUIRES=libpng \
46
47
  CC='gcc -mms-bitfields -mthreads' \
47
48
  CPPFLAGS="-I/devel/dist/${ARCH}/${ZLIB}/include" \
48
- LDFLAGS="-L/devel/dist/${ARCH}/${ZLIB}/lib" \
49
+ LDFLAGS="-L/devel/dist/${ARCH}/${GETTEXT_RUNTIME}/lib \
50
+ -L/devel/dist/${ARCH}/${ZLIB}/lib" \
49
51
  CFLAGS=-O2 \
50
52
  ./configure --disable-static --enable-ft=yes --prefix=c:/devel/target/$HEX &&
51
53
 
@@ -61,6 +63,12 @@ cp -p COPYING COPYING-LGPL-2.1 COPYING-MPL-1.1 /devel/target/$HEX/share/doc/$THI
61
63
 
62
64
  cd /devel/target/$HEX &&
63
65
 
66
+ zip /tmp/$RUNZIP bin/libcairo-gobject-2.dll &&
67
+ zip /tmp/$RUNZIP bin/libcairo-script-interpreter-2.dll &&
68
+
69
+ zip /tmp/$DEVZIP lib/libcairo-gobject.dll.a &&
70
+ zip /tmp/$DEVZIP lib/libcairo-script-interpreter.dll.a &&
71
+
64
72
  (cd lib && lib.exe -machine:X86 -def:cairo.def -out:cairo.lib) &&
65
73
 
66
74
  zip /tmp/$DEVZIP lib/cairo.def lib/cairo.lib &&
@@ -0,0 +1,188 @@
1
+ ++ sed -e 's/need_relink=yes/need_relink=no # no way --tml/'
2
+ ++ mv conftools/ltmain.temp conftools/ltmain.sh
3
+ ++ patch -p0
4
+ patching file `Makefile.in'
5
+ ++ CC='gcc -mthreads'
6
+ ++ LDFLAGS=-Wl,--enable-auto-image-base
7
+ ++ CFLAGS=-O2
8
+ ++ ./configure --prefix=c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed --disable-static
9
+ checking build system type... i686-pc-mingw32
10
+ checking host system type... i686-pc-mingw32
11
+ checking for gcc... gcc -mthreads
12
+ checking for C compiler default output file name... a.exe
13
+ checking whether the C compiler works... yes
14
+ checking whether we are cross compiling... no
15
+ checking for suffix of executables... .exe
16
+ checking for suffix of object files... o
17
+ checking whether we are using the GNU C compiler... yes
18
+ checking whether gcc -mthreads accepts -g... yes
19
+ checking for gcc -mthreads option to accept ANSI C... none needed
20
+ checking for a sed that does not truncate output... /bin/sed
21
+ checking for egrep... grep -E
22
+ checking for ld used by gcc -mthreads... c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe
23
+ checking if the linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) is GNU ld... yes
24
+ checking for c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe option to reload object files... -r
25
+ checking for BSD-compatible nm... /opt/mingw/bin/nm
26
+ checking whether ln -s works... yes
27
+ checking how to recognise dependent libraries... file_magic file format pei*-i386(.*architecture: i386)?
28
+ checking for dlltool... dlltool
29
+ checking for as... as
30
+ checking for objdump... objdump
31
+ checking how to run the C preprocessor... gcc -mthreads -E
32
+ checking for ANSI C header files... yes
33
+ checking for sys/types.h... yes
34
+ checking for sys/stat.h... yes
35
+ checking for stdlib.h... yes
36
+ checking for string.h... yes
37
+ checking for memory.h... yes
38
+ checking for strings.h... yes
39
+ checking for inttypes.h... yes
40
+ checking for stdint.h... yes
41
+ checking for unistd.h... yes
42
+ checking dlfcn.h usability... no
43
+ checking dlfcn.h presence... no
44
+ checking for dlfcn.h... no
45
+ checking for g++... g++
46
+ checking whether we are using the GNU C++ compiler... yes
47
+ checking whether g++ accepts -g... yes
48
+ checking how to run the C++ preprocessor... g++ -E
49
+ checking for g77... g77
50
+ checking whether we are using the GNU Fortran 77 compiler... yes
51
+ checking whether g77 accepts -g... yes
52
+ checking the maximum length of command line arguments... 8192
53
+ checking command to parse /opt/mingw/bin/nm output from gcc -mthreads object... ok
54
+ checking for objdir... .libs
55
+ checking for ar... ar
56
+ checking for ranlib... ranlib
57
+ checking for strip... strip
58
+ checking if gcc -mthreads supports -fno-rtti -fno-exceptions... no
59
+ checking for gcc -mthreads option to produce PIC... -DDLL_EXPORT
60
+ checking if gcc -mthreads PIC flag -DDLL_EXPORT works... yes
61
+ checking if gcc -mthreads static flag -static works... yes
62
+ checking if gcc -mthreads supports -c -o file.o... yes
63
+ checking whether the gcc -mthreads linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) supports shared libraries... yes
64
+ checking whether -lc should be explicitly linked in... yes
65
+ checking dynamic linker characteristics... Win32 ld.exe
66
+ checking how to hardcode library paths into programs... immediate
67
+ checking whether stripping libraries is possible... yes
68
+ checking if libtool supports shared libraries... yes
69
+ checking whether to build shared libraries... yes
70
+ checking whether to build static libraries... no
71
+ configure: creating libtool
72
+ appending configuration tag "CXX" to libtool
73
+ checking for ld used by g++... c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe
74
+ checking if the linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) is GNU ld... yes
75
+ checking whether the g++ linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) supports shared libraries... yes
76
+ checking for g++ option to produce PIC... -DDLL_EXPORT
77
+ checking if g++ PIC flag -DDLL_EXPORT works... yes
78
+ checking if g++ static flag -static works... yes
79
+ checking if g++ supports -c -o file.o... yes
80
+ checking whether the g++ linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) supports shared libraries... yes
81
+ checking dynamic linker characteristics... Win32 ld.exe
82
+ checking how to hardcode library paths into programs... immediate
83
+ appending configuration tag "F77" to libtool
84
+ checking if libtool supports shared libraries... yes
85
+ checking whether to build shared libraries... yes
86
+ checking whether to build static libraries... no
87
+ checking for g77 option to produce PIC... -DDLL_EXPORT
88
+ checking if g77 PIC flag -DDLL_EXPORT works... yes
89
+ checking if g77 static flag -static works... yes
90
+ checking if g77 supports -c -o file.o... yes
91
+ checking whether the g77 linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) supports shared libraries... yes
92
+ checking dynamic linker characteristics... Win32 ld.exe
93
+ checking how to hardcode library paths into programs... immediate
94
+ checking for gcc... (cached) gcc -mthreads
95
+ checking whether we are using the GNU C compiler... (cached) yes
96
+ checking whether gcc -mthreads accepts -g... (cached) yes
97
+ checking for gcc -mthreads option to accept ANSI C... (cached) none needed
98
+ checking for a BSD-compatible install... /opt/local/bin/install -c
99
+ checking whether gcc -mthreads accepts -fexceptions... yes
100
+ checking for ANSI C header files... (cached) yes
101
+ checking whether byte ordering is bigendian... no
102
+ checking for an ANSI C-conforming const... yes
103
+ checking for size_t... yes
104
+ checking for memmove... yes
105
+ checking for bcopy... no
106
+ checking fcntl.h usability... yes
107
+ checking fcntl.h presence... yes
108
+ checking for fcntl.h... yes
109
+ checking for unistd.h... (cached) yes
110
+ checking for off_t... yes
111
+ checking for stdlib.h... (cached) yes
112
+ checking for unistd.h... (cached) yes
113
+ checking for getpagesize... yes
114
+ checking for working mmap... no
115
+ checking for an ANSI C99-conforming __func__... yes
116
+ configure: creating ./config.status
117
+ config.status: creating Makefile
118
+ config.status: creating expat_config.h
119
+ ++ make install
120
+ gcc -mthreads -I./lib -I. -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o xmlwf/xmlwf.o -c xmlwf/xmlwf.c
121
+ gcc -mthreads -I./lib -I. -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o xmlwf/xmlfile.o -c xmlwf/xmlfile.c
122
+ gcc -mthreads -I./lib -I. -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o xmlwf/codepage.o -c xmlwf/codepage.c
123
+ gcc -mthreads -I./lib -I. -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o xmlwf/readfilemap.o -c xmlwf/readfilemap.c
124
+ /bin/sh ./libtool --silent --mode=compile gcc -mthreads -I./lib -I. -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o lib/xmlparse.lo -c lib/xmlparse.c
125
+ /bin/sh ./libtool --silent --mode=compile gcc -mthreads -I./lib -I. -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o lib/xmltok.lo -c lib/xmltok.c
126
+ /bin/sh ./libtool --silent --mode=compile gcc -mthreads -I./lib -I. -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -o lib/xmlrole.lo -c lib/xmlrole.c
127
+ /bin/sh ./libtool --silent --mode=link gcc -mthreads -I./lib -I. -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -no-undefined -version-info 6:2:5 -rpath c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib -Wl,--enable-auto-image-base -o libexpat.la -export-symbols lib/libexpat.def lib/xmlparse.lo lib/xmltok.lo lib/xmlrole.lo
128
+ Creating library file: .libs/libexpat.dll.a
129
+ /bin/sh ./libtool --silent --mode=link gcc -mthreads -I./lib -I. -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -DHAVE_EXPAT_CONFIG_H -Wl,--enable-auto-image-base -o xmlwf/xmlwf xmlwf/xmlwf.o xmlwf/xmlfile.o xmlwf/codepage.o xmlwf/readfilemap.o libexpat.la
130
+ /bin/sh ./conftools/mkinstalldirs c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/include
131
+ mkdir c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed
132
+ mkdir c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib
133
+ mkdir c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/include
134
+ /bin/sh ./libtool --mode=install /opt/local/bin/install -c libexpat.la c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib/libexpat.la
135
+ /opt/local/bin/install -c .libs/libexpat.dll.a c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib/libexpat.dll.a
136
+ base_file=`basename ${file}`
137
+ dlpath=`/bin/sh 2>&1 -c '. .libs/'${base_file}'i;echo $dlname'`
138
+ dldir=c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib/`dirname $dlpath`
139
+ test -d $dldir || mkdir -p $dldir
140
+ /opt/local/bin/install -c .libs/libexpat-1.dll $dldir/libexpat-1.dll
141
+ chmod a+x $dldir/libexpat-1.dll
142
+ /opt/local/bin/install -c .libs/libexpat.lai c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib/libexpat.la
143
+ ----------------------------------------------------------------------
144
+ Libraries have been installed in:
145
+ c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib
146
+
147
+ If you ever happen to want to link against installed libraries
148
+ in a given directory, LIBDIR, you must either use libtool, and
149
+ specify the full pathname of the library, or use the `-LLIBDIR'
150
+ flag during linking and do at least one of the following:
151
+ - add LIBDIR to the `PATH' environment variable
152
+ during execution
153
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
154
+ during linking
155
+ - use the `-LLIBDIR' linker flag
156
+
157
+ See any operating system documentation about shared libraries for
158
+ more information, such as the ld(1) and ld.so(8) manual pages.
159
+ ----------------------------------------------------------------------
160
+ for FN in ./lib/expat.h ./lib/expat_external.h ; do /opt/local/bin/install -c -m 644 $FN c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/include ; done
161
+ /bin/sh ./conftools/mkinstalldirs c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/bin c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/man/man1
162
+ mkdir c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/man
163
+ mkdir c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/man/man1
164
+ /bin/sh ./libtool --mode=install /opt/local/bin/install -c xmlwf/xmlwf c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/bin/xmlwf
165
+ /opt/local/bin/install -c xmlwf/xmlwf c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/bin/xmlwf
166
+ /opt/local/bin/install -c -m 644 ./doc/xmlwf.1 c:/devel/target/f028e0acd588ff6a2ab37ae0703821ed/man/man1
167
+ ++ cp lib/libexpat.def /devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib
168
+ ++ cd /devel/target/f028e0acd588ff6a2ab37ae0703821ed/lib
169
+ ++ lib.exe -machine:IX86 -def:libexpat.def -out:expat.lib
170
+ Microsoft (R) Library Manager Version 6.00.8447
171
+ Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
172
+
173
+ Creating library expat.lib and object expat.exp
174
+ ++ rm -f /tmp/expat_2.0.1-1_win32.zip /tmp/expat-dev_2.0.1-1_win32.zip
175
+ ++ cd /devel/target/f028e0acd588ff6a2ab37ae0703821ed
176
+ ++ zip /tmp/expat_2.0.1-1_win32.zip bin/libexpat-1.dll
177
+ adding: bin/libexpat-1.dll (224 bytes security) (deflated 60%)
178
+ ++ zip /tmp/expat-dev_2.0.1-1_win32.zip bin/xmlwf.exe
179
+ adding: bin/xmlwf.exe (224 bytes security) (deflated 69%)
180
+ ++ zip -r -D /tmp/expat-dev_2.0.1-1_win32.zip include
181
+ adding: include/expat.h (224 bytes security) (deflated 74%)
182
+ adding: include/expat_external.h (224 bytes security) (deflated 58%)
183
+ ++ zip /tmp/expat-dev_2.0.1-1_win32.zip lib/libexpat.dll.a lib/libexpat.def lib/expat.lib
184
+ adding: lib/libexpat.dll.a (224 bytes security) (deflated 92%)
185
+ adding: lib/libexpat.def (224 bytes security) (deflated 66%)
186
+ adding: lib/expat.lib (224 bytes security) (deflated 85%)
187
+ ++ zip -r -D /tmp/expat-dev_2.0.1-1_win32.zip man
188
+ adding: man/man1/xmlwf.1 (224 bytes security) (deflated 57%)
@@ -0,0 +1,68 @@
1
+ # This is a shell script that calls functions and scripts from
2
+ # tml@iki.fi's personal work environment. It is not expected to be
3
+ # usable unmodified by others, and is included only for reference.
4
+
5
+ MOD=expat
6
+ VER=2.0.1
7
+ REV=1
8
+ ARCH=win32
9
+
10
+ THIS=${MOD}_${VER}-${REV}_${ARCH}
11
+
12
+ RUNZIP=${MOD}_${VER}-${REV}_${ARCH}.zip
13
+ DEVZIP=${MOD}-dev_${VER}-${REV}_${ARCH}.zip
14
+
15
+ # We use a string of hex digits to make it more evident that it is
16
+ # just a hash value and not supposed to be relevant at end-user
17
+ # machines.
18
+ HEX=`echo $THIS | md5sum | cut -d' ' -f1`
19
+ TARGET=c:/devel/target/$HEX
20
+
21
+ usestable
22
+ usemsvs6
23
+
24
+ (
25
+
26
+ set -x
27
+
28
+ # Don't let libtool do its relinking dance. Don't know how relevant
29
+ # this is, but it doesn't hurt anyway.
30
+
31
+ sed -e 's/need_relink=yes/need_relink=no # no way --tml/' <conftools/ltmain.sh >conftools/ltmain.temp && mv conftools/ltmain.temp conftools/ltmain.sh &&
32
+
33
+ patch -p0 <<\EOF &&
34
+ --- Makefile.in
35
+ +++ Makefile.in
36
+ @@ -117,7 +117,7 @@
37
+ COMPILE = $(CC) $(INCLUDES) $(CFLAGS) $(DEFS) $(CPPFLAGS)
38
+ CXXCOMPILE = $(CXX) $(INCLUDES) $(CXXFLAGS) $(DEFS) $(CPPFLAGS)
39
+ LTCOMPILE = $(LIBTOOL) $(LTFLAGS) --mode=compile $(COMPILE)
40
+ -LINK_LIB = $(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) -no-undefined $(VSNFLAG) -rpath $(libdir) $(LDFLAGS) -o $@
41
+ +LINK_LIB = $(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) -no-undefined $(VSNFLAG) -rpath $(libdir) $(LDFLAGS) -o $@ -export-symbols lib/libexpat.def
42
+ LINK_EXE = $(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) $(LDFLAGS) -o $@
43
+ LINK_CXX_EXE = $(LIBTOOL) $(LTFLAGS) --mode=link $(CXXCOMPILE) $(LDFLAGS) -o $@
44
+
45
+ EOF
46
+
47
+ CC='gcc -mthreads' LDFLAGS='-Wl,--enable-auto-image-base' CFLAGS=-O2 ./configure --prefix=c:/devel/target/$HEX --disable-static &&
48
+
49
+ make install &&
50
+
51
+ cp lib/libexpat.def /devel/target/$HEX/lib &&
52
+
53
+ (cd /devel/target/$HEX/lib && lib.exe -machine:IX86 -def:libexpat.def -out:expat.lib) &&
54
+
55
+ rm -f /tmp/$RUNZIP /tmp/$DEVZIP &&
56
+
57
+ (cd /devel/target/$HEX &&
58
+ zip /tmp/$RUNZIP bin/libexpat-1.dll &&
59
+ zip /tmp/$DEVZIP bin/xmlwf.exe &&
60
+ zip -r -D /tmp/$DEVZIP include &&
61
+ zip /tmp/$DEVZIP lib/{libexpat.dll.a,libexpat.def,expat.lib} &&
62
+ zip -r -D /tmp/$DEVZIP man
63
+ )
64
+
65
+ ) 2>&1 | tee /devel/src/tml/packaging/$THIS.log
66
+
67
+ (cd /devel && zip /tmp/$DEVZIP src/tml/packaging/$THIS.{sh,log}) &&
68
+ manifestify /tmp/$RUNZIP /tmp/$DEVZIP
@@ -0,0 +1,999 @@
1
+ +++ latest --arch=win32 expat
2
+ ++ EXPAT=expat-2.0.1-1
3
+ +++ latest --arch=win32 freetype
4
+ ++ FREETYPE=freetype-2.3.11-1
5
+ ++ sed -e 's/need_relink=yes/need_relink=no # no way --tml/'
6
+ ++ mv ltmain.temp ltmain.sh
7
+ ++ patch -p0
8
+ patching file src/Makefile.in
9
+ Hunk #1 succeeded at 688 (offset 68 lines).
10
+ ++ lt_cv_deplibs_check_method=pass_all
11
+ ++ CC='gcc -mthreads'
12
+ ++ LDFLAGS=-Wl,--enable-auto-image-base
13
+ ++ CFLAGS=-O2
14
+ ++ ./configure --with-expat=/devel/dist/win32/expat-2.0.1-1 --with-freetype-config=/devel/dist/win32/freetype-2.3.11-1/bin/freetype-config --prefix=c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4 --with-confdir=c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts --disable-static
15
+ checking for a BSD-compatible install... /opt/local/bin/install -c
16
+ checking whether build environment is sane... yes
17
+ checking for a thread-safe mkdir -p... /bin/mkdir -p
18
+ checking for gawk... gawk
19
+ checking whether make sets $(MAKE)... yes
20
+ checking whether to enable maintainer-specific portions of Makefiles... no
21
+ checking for gcc... gcc -mthreads
22
+ checking for C compiler default output file name... a.exe
23
+ checking whether the C compiler works... yes
24
+ checking whether we are cross compiling... no
25
+ checking for suffix of executables... .exe
26
+ checking for suffix of object files... o
27
+ checking whether we are using the GNU C compiler... yes
28
+ checking whether gcc -mthreads accepts -g... yes
29
+ checking for gcc -mthreads option to accept ISO C89... none needed
30
+ checking for style of include used by make... GNU
31
+ checking dependency style of gcc -mthreads... gcc3
32
+ checking for a BSD-compatible install... /opt/local/bin/install -c
33
+ checking whether ln -s works... yes
34
+ checking build system type... i686-pc-mingw32
35
+ checking host system type... i686-pc-mingw32
36
+ checking for as... as
37
+ checking for dlltool... dlltool
38
+ checking for objdump... objdump
39
+ checking for a sed that does not truncate output... /bin/sed
40
+ checking for grep that handles long lines and -e... /bin/grep
41
+ checking for egrep... /bin/grep -E
42
+ checking for fgrep... /bin/grep -F
43
+ checking for ld used by gcc -mthreads... c:/opt/mingw/mingw32/bin/ld.exe
44
+ checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
45
+ checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
46
+ checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
47
+ checking the maximum length of command line arguments... 8192
48
+ checking whether the shell understands some XSI constructs... yes
49
+ checking whether the shell understands "+="... yes
50
+ checking for c:/opt/mingw/mingw32/bin/ld.exe option to reload object files... -r
51
+ checking for objdump... (cached) objdump
52
+ checking how to recognize dependent libraries... (cached) pass_all
53
+ checking for ar... ar
54
+ checking for strip... strip
55
+ checking for ranlib... ranlib
56
+ checking command to parse /opt/mingw/bin/nm output from gcc -mthreads object... ok
57
+ checking how to run the C preprocessor... gcc -mthreads -E
58
+ checking for ANSI C header files... yes
59
+ checking for sys/types.h... yes
60
+ checking for sys/stat.h... yes
61
+ checking for stdlib.h... yes
62
+ checking for string.h... yes
63
+ checking for memory.h... yes
64
+ checking for strings.h... yes
65
+ checking for inttypes.h... yes
66
+ checking for stdint.h... yes
67
+ checking for unistd.h... yes
68
+ checking for dlfcn.h... no
69
+ checking for objdir... .libs
70
+ checking if gcc -mthreads supports -fno-rtti -fno-exceptions... no
71
+ checking for gcc -mthreads option to produce PIC... -DDLL_EXPORT -DPIC
72
+ checking if gcc -mthreads PIC flag -DDLL_EXPORT -DPIC works... yes
73
+ checking if gcc -mthreads static flag -static works... yes
74
+ checking if gcc -mthreads supports -c -o file.o... yes
75
+ checking if gcc -mthreads supports -c -o file.o... (cached) yes
76
+ checking whether the gcc -mthreads linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
77
+ checking whether -lc should be explicitly linked in... yes
78
+ checking dynamic linker characteristics... Win32 ld.exe
79
+ checking how to hardcode library paths into programs... immediate
80
+ checking whether stripping libraries is possible... yes
81
+ checking if libtool supports shared libraries... yes
82
+ checking whether to build shared libraries... yes
83
+ checking whether to build static libraries... no
84
+ checking for bash... /bin/bash
85
+ checking if dolt supports this host... no, falling back to libtool
86
+ checking whether make sets $(MAKE)... (cached) yes
87
+ checking for lib.exe... yes
88
+ checking for a C compiler for build tools... gcc -mthreads
89
+ checking for suffix of executable build tools... .exe
90
+ checking for dirent.h that defines DIR... yes
91
+ checking for library containing opendir... none required
92
+ checking for ANSI C header files... (cached) yes
93
+ checking fcntl.h usability... yes
94
+ checking fcntl.h presence... yes
95
+ checking for fcntl.h... yes
96
+ checking for stdlib.h... (cached) yes
97
+ checking for string.h... (cached) yes
98
+ checking for unistd.h... (cached) yes
99
+ checking for an ANSI C-conforming const... yes
100
+ checking for inline... inline
101
+ checking for pid_t... yes
102
+ checking for vprintf... yes
103
+ checking for _doprnt... no
104
+ checking for stdlib.h... (cached) yes
105
+ checking for unistd.h... (cached) yes
106
+ checking for getpagesize... yes
107
+ checking for working mmap... no
108
+ checking for geteuid... no
109
+ checking for getuid... no
110
+ checking for link... no
111
+ checking for memmove... yes
112
+ checking for memset... yes
113
+ checking for mkstemp... no
114
+ checking for strchr... yes
115
+ checking for strrchr... yes
116
+ checking for strtol... yes
117
+ checking for getopt... yes
118
+ checking for getopt_long... yes
119
+ checking for sysconf... no
120
+ checking for ftruncate... yes
121
+ checking for chsize... yes
122
+ checking for rand... yes
123
+ checking for random... no
124
+ checking for lrand48... no
125
+ checking for a usable iconv... no
126
+ checking for FT_Get_Next_Char... yes
127
+ checking for FT_Get_BDF_Property... yes
128
+ checking for FT_Get_PS_Font_Info... yes
129
+ checking for FT_Has_PS_Glyph_Names... yes
130
+ checking for FT_Get_X11_Font_Format... yes
131
+ checking for FT_Select_Size... yes
132
+ checking for FT_Bitmap_Size.y_ppem... yes
133
+ checking expat.h usability... yes
134
+ checking expat.h presence... yes
135
+ checking for expat.h... yes
136
+ checking for XML_SetDoctypeDeclHandler... yes
137
+ checking for pkg-config... /opt/misc/bin/pkg-config
138
+ checking pkg-config is at least version 0.9.0... yes
139
+ checking for docbook2html... no
140
+ DOCMAN3 FcAtomicCreate.3 FcAtomicLock.3 FcAtomicNewFile.3 FcAtomicOrigFile.3 FcAtomicReplaceOrig.3 FcAtomicDeleteNew.3 FcAtomicUnlock.3 FcAtomicDestroy.3 FcBlanksCreate.3 FcBlanksDestroy.3 FcBlanksAdd.3 FcBlanksIsMember.3 FcCacheDir.3 FcCacheCopySet.3 FcCacheSubdir.3 FcCacheNumSubdir.3 FcCacheNumFont.3 FcCharSetCreate.3 FcCharSetDestroy.3 FcCharSetAddChar.3 FcCharSetCopy.3 FcCharSetEqual.3 FcCharSetIntersect.3 FcCharSetUnion.3 FcCharSetSubtract.3 FcCharSetMerge.3 FcCharSetHasChar.3 FcCharSetCount.3 FcCharSetIntersectCount.3 FcCharSetSubtractCount.3 FcCharSetIsSubset.3 FcCharSetFirstPage.3 FcCharSetNextPage.3 FcCharSetCoverage.3 FcCharSetNew.3 FcConfigCreate.3 FcConfigReference.3 FcConfigDestroy.3 FcConfigSetCurrent.3 FcConfigGetCurrent.3 FcConfigUptoDate.3 FcConfigHome.3 FcConfigEnableHome.3 FcConfigBuildFonts.3 FcConfigGetConfigDirs.3 FcConfigGetFontDirs.3 FcConfigGetConfigFiles.3 FcConfigGetCache.3 FcConfigGetCacheDirs.3 FcConfigGetFonts.3 FcConfigGetBlanks.3 FcConfigGetRescanInterval.3 FcConfigSetRescanInterval.3 FcConfigAppFontAddFile.3 FcConfigAppFontAddDir.3 FcConfigAppFontClear.3 FcConfigSubstituteWithPat.3 FcConfigSubstitute.3 FcFontMatch.3 FcFontSort.3 FcFontRenderPrepare.3 FcFontList.3 FcConfigFilename.3 FcConfigParseAndLoad.3 FcNameRegisterConstants.3 FcNameUnregisterConstants.3 FcNameGetConstant.3 FcNameConstant.3 FcDirCacheUnlink.3 FcDirCacheValid.3 FcDirCacheLoad.3 FcDirCacheRead.3 FcDirCacheLoadFile.3 FcDirCacheUnload.3 FcFileScan.3 FcFileIsDir.3 FcDirScan.3 FcDirSave.3 FcFontSetCreate.3 FcFontSetDestroy.3 FcFontSetAdd.3 FcFontSetList.3 FcFontSetMatch.3 FcFontSetPrint.3 FcFontSetSort.3 FcFontSetSortDestroy.3 FcPatternFormat.3 FcFreeTypeCharIndex.3 FcFreeTypeCharSet.3 FcFreeTypeCharSetAndSpacing.3 FcFreeTypeQuery.3 FcFreeTypeQueryFace.3 FcInitLoadConfig.3 FcInitLoadConfigAndFonts.3 FcInit.3 FcFini.3 FcGetVersion.3 FcInitReinitialize.3 FcInitBringUptoDate.3 FcLangSetCreate.3 FcLangSetDestroy.3 FcLangSetCopy.3 FcLangSetAdd.3 FcLangSetCompare.3 FcLangSetContains.3 FcLangSetEqual.3 FcLangSetHash.3 FcLangSetHasLang.3 FcLangSetGetLangs.3 FcGetLangs.3 FcLangGetCharSet.3 FcMatrixInit.3 FcMatrixCopy.3 FcMatrixEqual.3 FcMatrixMultiply.3 FcMatrixRotate.3 FcMatrixScale.3 FcMatrixShear.3 FcObjectSetCreate.3 FcObjectSetAdd.3 FcObjectSetDestroy.3 FcObjectSetBuild.3 FcNameRegisterObjectTypes.3 FcNameUnregisterObjectTypes.3 FcNameGetObjectType.3 FcPatternCreate.3 FcPatternDuplicate.3 FcPatternReference.3 FcPatternDestroy.3 FcPatternEqual.3 FcPatternEqualSubset.3 FcPatternFilter.3 FcPatternHash.3 FcPatternAdd.3 FcPatternAddWeak.3 FcPatternAdd-Type.3 FcPatternGet.3 FcPatternGet-Type.3 FcPatternBuild.3 FcPatternDel.3 FcPatternRemove.3 FcPatternPrint.3 FcDefaultSubstitute.3 FcNameParse.3 FcNameUnparse.3 FcUtf8ToUcs4.3 FcUcs4ToUtf8.3 FcUtf8Len.3 FcUtf16ToUcs4.3 FcUtf16Len.3 FcIsLower.3 FcIsUpper.3 FcToLower.3 FcStrCopy.3 FcStrDowncase.3 FcStrCopyFilename.3 FcStrCmp.3 FcStrCmpIgnoreCase.3 FcStrStr.3 FcStrStrIgnoreCase.3 FcStrPlus.3 FcStrFree.3 FcStrDirname.3 FcStrBasename.3 FcStrSetCreate.3 FcStrSetMember.3 FcStrSetEqual.3 FcStrSetAdd.3 FcStrSetAddFilename.3 FcStrSetDel.3 FcStrSetDestroy.3 FcStrListCreate.3 FcStrListNext.3 FcStrListDone.3 FcValueDestroy.3 FcValueSave.3 FcValuePrint.3 FcValueEqual.3
141
+ configure: creating ./config.status
142
+ config.status: creating Makefile
143
+ config.status: creating fontconfig/Makefile
144
+ config.status: creating fc-lang/Makefile
145
+ config.status: creating fc-glyphname/Makefile
146
+ config.status: creating fc-case/Makefile
147
+ config.status: creating fc-arch/Makefile
148
+ config.status: creating src/Makefile
149
+ config.status: creating conf.d/Makefile
150
+ config.status: creating fc-cache/Makefile
151
+ config.status: creating fc-cat/Makefile
152
+ config.status: creating fc-list/Makefile
153
+ config.status: creating fc-match/Makefile
154
+ config.status: creating fc-query/Makefile
155
+ config.status: creating fc-scan/Makefile
156
+ config.status: creating doc/Makefile
157
+ config.status: creating doc/version.sgml
158
+ config.status: creating test/Makefile
159
+ config.status: creating fontconfig.spec
160
+ config.status: creating fontconfig.pc
161
+ config.status: creating fontconfig-zip
162
+ config.status: creating config.h
163
+ config.status: executing depfiles commands
164
+ config.status: executing libtool commands
165
+ ++ PATH=/devel/dist/win32/expat-2.0.1-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/devel/target/stable/bin:/opt/misc/bin:/opt/gnu/bin:/opt/pthread/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/opt/ikvm/bin:/opt/ant/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/opt/sysinternals/bin:/bin:.:/usr/local/bin:/mingw/bin:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:.
166
+ ++ make install
167
+ Making install in fontconfig
168
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fontconfig'
169
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fontconfig'
170
+ make[2]: Nothing to be done for `install-exec-am'.
171
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/include/fontconfig" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/include/fontconfig"
172
+ /opt/local/bin/install -c -m 644 fontconfig.h fcfreetype.h fcprivate.h 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/include/fontconfig'
173
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fontconfig'
174
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fontconfig'
175
+ Making install in fc-case
176
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-case'
177
+ touch fcalias.h fcaliastail.h
178
+ make install-am
179
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-case'
180
+ CC fc-case.o
181
+ CCLD fc-case.exe
182
+ GEN fccase.h
183
+ make[3]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-case'
184
+ make[3]: Nothing to be done for `install-exec-am'.
185
+ make[3]: Nothing to be done for `install-data-am'.
186
+ make[3]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-case'
187
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-case'
188
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-case'
189
+ Making install in fc-lang
190
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-lang'
191
+ touch fcalias.h fcaliastail.h
192
+ CC fc-lang.o
193
+ In file included from fc-lang.c:26:
194
+ ../src/fcstr.c: In function 'FcStrCanonFilename':
195
+ ../src/fcstr.c:1002: warning: pointer targets in passing argument 1 of 'GetFullPathNameA' differ in signedness
196
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1468: note: expected 'LPCSTR' but argument is of type 'const FcChar8 *'
197
+ ../src/fcstr.c:1002: warning: pointer targets in passing argument 3 of 'GetFullPathNameA' differ in signedness
198
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1468: note: expected 'LPSTR' but argument is of type 'FcChar8 *'
199
+ ../src/fcstr.c:1007: warning: pointer targets in passing argument 1 of 'FcConvertDosPath' differ in signedness
200
+ ../src/fcstr.c:963: note: expected 'char *' but argument is of type 'FcChar8 *'
201
+ fc-lang.c: In function 'scan':
202
+ fc-lang.c:152: warning: assignment discards qualifiers from pointer target type
203
+ fc-lang.c:180: warning: assignment discards qualifiers from pointer target type
204
+ fc-lang.c: In function 'compare':
205
+ fc-lang.c:235: warning: pointer targets in passing argument 1 of 'FcStrCmpIgnoreCase' differ in signedness
206
+ ../src/fcstr.c:212: note: expected 'const FcChar8 *' but argument is of type 'char * const'
207
+ fc-lang.c:235: warning: pointer targets in passing argument 2 of 'FcStrCmpIgnoreCase' differ in signedness
208
+ ../src/fcstr.c:212: note: expected 'const FcChar8 *' but argument is of type 'char * const'
209
+ CCLD fc-lang.exe
210
+ GEN fclang.h
211
+ make install-am
212
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-lang'
213
+ make[3]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-lang'
214
+ make[3]: Nothing to be done for `install-exec-am'.
215
+ make[3]: Nothing to be done for `install-data-am'.
216
+ make[3]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-lang'
217
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-lang'
218
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-lang'
219
+ Making install in fc-glyphname
220
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-glyphname'
221
+ touch fcalias.h fcaliastail.h
222
+ CC fc-glyphname.o
223
+ CCLD fc-glyphname.exe
224
+ GEN fcglyphname.h
225
+ make install-am
226
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-glyphname'
227
+ make[3]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-glyphname'
228
+ make[3]: Nothing to be done for `install-exec-am'.
229
+ make[3]: Nothing to be done for `install-data-am'.
230
+ make[3]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-glyphname'
231
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-glyphname'
232
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-glyphname'
233
+ Making install in fc-arch
234
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-arch'
235
+ touch fcalias.h fcaliastail.h
236
+ CC fc-arch.o
237
+ CCLD fc-arch.exe
238
+ GEN fcarch.h
239
+ make install-am
240
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-arch'
241
+ make[3]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-arch'
242
+ make[3]: Nothing to be done for `install-exec-am'.
243
+ make[3]: Nothing to be done for `install-data-am'.
244
+ make[3]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-arch'
245
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-arch'
246
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-arch'
247
+ Making install in src
248
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/src'
249
+ sh ../src/makealias "../src" fcalias.h fcaliastail.h ../fontconfig/fontconfig.h ../src/fcdeprecate.h ../fontconfig/fcprivate.h
250
+ sh ../src/makealias "../src" fcftalias.h fcftaliastail.h ../fontconfig/fcfreetype.h
251
+ make install-am
252
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/src'
253
+ CC fcatomic.lo
254
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcatomic.lo -MD -MP -MF .deps/fcatomic.Tpo -c fcatomic.c -DDLL_EXPORT -DPIC -o .libs/fcatomic.o
255
+ fcatomic.c: In function 'FcAtomicLock':
256
+ fcatomic.c:103: warning: unused variable 'f'
257
+ fcatomic.c:102: warning: unused variable 'fd'
258
+ fcatomic.c: In function 'FcAtomicReplaceOrig':
259
+ fcatomic.c:181: warning: pointer targets in passing argument 1 of 'unlink' differ in signedness
260
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/io.h:306: note: expected 'const char *' but argument is of type 'FcChar8 *'
261
+ CC fcblanks.lo
262
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcblanks.lo -MD -MP -MF .deps/fcblanks.Tpo -c fcblanks.c -DDLL_EXPORT -DPIC -o .libs/fcblanks.o
263
+ CC fccache.lo
264
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fccache.lo -MD -MP -MF .deps/fccache.Tpo -c fccache.c -DDLL_EXPORT -DPIC -o .libs/fccache.o
265
+ fccache.c: In function 'FcStat':
266
+ fccache.c:110: warning: pointer targets in passing argument 1 of 'FcStringHash' differ in signedness
267
+ fcint.h:953: note: expected 'const FcChar8 *' but argument is of type 'char *'
268
+ fccache.c: In function 'FcDirCacheOpenFile':
269
+ fccache.c:202: warning: pointer targets in passing argument 1 of 'FcStat' differ in signedness
270
+ fccache.c:89: note: expected 'const char *' but argument is of type 'const FcChar8 *'
271
+ fccache.c: In function 'FcDirCacheWrite':
272
+ fccache.c:943: warning: pointer targets in passing argument 1 of 'FcStat' differ in signedness
273
+ fccache.c:89: note: expected 'const char *' but argument is of type 'FcChar8 *'
274
+ CC fccfg.lo
275
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fccfg.lo -MD -MP -MF .deps/fccfg.Tpo -c fccfg.c -DDLL_EXPORT -DPIC -o .libs/fccfg.o
276
+ fccfg.c:1598: warning: no previous prototype for 'DllMain'
277
+ fccfg.c: In function 'DllMain':
278
+ fccfg.c:1607: warning: pointer targets in passing argument 2 of 'GetModuleFileNameA' differ in signedness
279
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1483: note: expected 'LPSTR' but argument is of type 'FcChar8 *'
280
+ fccfg.c:1615: warning: pointer targets in passing argument 1 of 'strrchr' differ in signedness
281
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:54: note: expected 'const char *' but argument is of type 'FcChar8 *'
282
+ fccfg.c:1615: warning: pointer targets in assignment differ in signedness
283
+ fccfg.c:1619: warning: pointer targets in passing argument 1 of 'strrchr' differ in signedness
284
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:54: note: expected 'const char *' but argument is of type 'FcChar8 *'
285
+ fccfg.c:1619: warning: pointer targets in assignment differ in signedness
286
+ fccfg.c:1620: warning: pointer targets in passing argument 2 of 'FcStrCmpIgnoreCase' differ in signedness
287
+ ../fontconfig/fontconfig.h:865: note: expected 'const FcChar8 *' but argument is of type 'char *'
288
+ fccfg.c:1621: warning: pointer targets in passing argument 2 of 'FcStrCmpIgnoreCase' differ in signedness
289
+ ../fontconfig/fontconfig.h:865: note: expected 'const FcChar8 *' but argument is of type 'char *'
290
+ fccfg.c:1623: warning: pointer targets in passing argument 1 of 'strcat' differ in signedness
291
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:41: note: expected 'char *' but argument is of type 'FcChar8 *'
292
+ fccfg.c: In function 'FcConfigGetPath':
293
+ fccfg.c:1728: warning: pointer targets in passing argument 2 of 'GetModuleFileNameA' differ in signedness
294
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1483: note: expected 'LPSTR' but argument is of type 'FcChar8 *'
295
+ fccfg.c:1730: warning: pointer targets in passing argument 1 of 'strrchr' differ in signedness
296
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:54: note: expected 'const char *' but argument is of type 'FcChar8 *'
297
+ fccfg.c:1732: warning: pointer targets in passing argument 1 of 'strcat' differ in signedness
298
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:41: note: expected 'char *' but argument is of type 'FcChar8 *'
299
+ CC fccharset.lo
300
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fccharset.lo -MD -MP -MF .deps/fccharset.Tpo -c fccharset.c -DDLL_EXPORT -DPIC -o .libs/fccharset.o
301
+ CC fcdbg.lo
302
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcdbg.lo -MD -MP -MF .deps/fcdbg.Tpo -c fcdbg.c -DDLL_EXPORT -DPIC -o .libs/fcdbg.o
303
+ CC fcdefault.lo
304
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcdefault.lo -MD -MP -MF .deps/fcdefault.Tpo -c fcdefault.c -DDLL_EXPORT -DPIC -o .libs/fcdefault.o
305
+ CC fcdir.lo
306
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcdir.lo -MD -MP -MF .deps/fcdir.Tpo -c fcdir.c -DDLL_EXPORT -DPIC -o .libs/fcdir.o
307
+ CC fcformat.lo
308
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcformat.lo -MD -MP -MF .deps/fcformat.Tpo -c fcformat.c -DDLL_EXPORT -DPIC -o .libs/fcformat.o
309
+ CC fcfreetype.lo
310
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcfreetype.lo -MD -MP -MF .deps/fcfreetype.Tpo -c fcfreetype.c -DDLL_EXPORT -DPIC -o .libs/fcfreetype.o
311
+ CC fcfs.lo
312
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcfs.lo -MD -MP -MF .deps/fcfs.Tpo -c fcfs.c -DDLL_EXPORT -DPIC -o .libs/fcfs.o
313
+ CC fcinit.lo
314
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcinit.lo -MD -MP -MF .deps/fcinit.Tpo -c fcinit.c -DDLL_EXPORT -DPIC -o .libs/fcinit.o
315
+ CC fclang.lo
316
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fclang.lo -MD -MP -MF .deps/fclang.Tpo -c fclang.c -DDLL_EXPORT -DPIC -o .libs/fclang.o
317
+ CC fclist.lo
318
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fclist.lo -MD -MP -MF .deps/fclist.Tpo -c fclist.c -DDLL_EXPORT -DPIC -o .libs/fclist.o
319
+ CC fcmatch.lo
320
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcmatch.lo -MD -MP -MF .deps/fcmatch.Tpo -c fcmatch.c -DDLL_EXPORT -DPIC -o .libs/fcmatch.o
321
+ CC fcmatrix.lo
322
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcmatrix.lo -MD -MP -MF .deps/fcmatrix.Tpo -c fcmatrix.c -DDLL_EXPORT -DPIC -o .libs/fcmatrix.o
323
+ CC fcname.lo
324
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcname.lo -MD -MP -MF .deps/fcname.Tpo -c fcname.c -DDLL_EXPORT -DPIC -o .libs/fcname.o
325
+ CC fcpat.lo
326
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcpat.lo -MD -MP -MF .deps/fcpat.Tpo -c fcpat.c -DDLL_EXPORT -DPIC -o .libs/fcpat.o
327
+ CC fcserialize.lo
328
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcserialize.lo -MD -MP -MF .deps/fcserialize.Tpo -c fcserialize.c -DDLL_EXPORT -DPIC -o .libs/fcserialize.o
329
+ CC fcstr.lo
330
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcstr.lo -MD -MP -MF .deps/fcstr.Tpo -c fcstr.c -DDLL_EXPORT -DPIC -o .libs/fcstr.o
331
+ fcstr.c: In function 'FcStrCanonFilename':
332
+ fcstr.c:1002: warning: pointer targets in passing argument 1 of 'GetFullPathNameA' differ in signedness
333
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1468: note: expected 'LPCSTR' but argument is of type 'const FcChar8 *'
334
+ fcstr.c:1002: warning: pointer targets in passing argument 3 of 'GetFullPathNameA' differ in signedness
335
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1468: note: expected 'LPSTR' but argument is of type 'FcChar8 *'
336
+ fcstr.c:1007: warning: pointer targets in passing argument 1 of 'FcConvertDosPath' differ in signedness
337
+ fcstr.c:963: note: expected 'char *' but argument is of type 'FcChar8 *'
338
+ CC fcxml.lo
339
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT fcxml.lo -MD -MP -MF .deps/fcxml.Tpo -c fcxml.c -DDLL_EXPORT -DPIC -o .libs/fcxml.o
340
+ fcxml.c: In function 'FcExprCreateString':
341
+ fcxml.c:107: warning: assignment discards qualifiers from pointer target type
342
+ fcxml.c: In function 'FcExprCreateConst':
343
+ fcxml.c:155: warning: assignment discards qualifiers from pointer target type
344
+ fcxml.c: In function 'FcEndElement':
345
+ fcxml.c:2042: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness
346
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:43: note: expected 'const char *' but argument is of type 'FcChar8 *'
347
+ fcxml.c:2046: warning: pointer targets in passing argument 2 of 'GetModuleFileNameA' differ in signedness
348
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1483: note: expected 'LPSTR' but argument is of type 'FcChar8 *'
349
+ fcxml.c:2057: warning: pointer targets in assignment differ in signedness
350
+ fcxml.c:2059: warning: pointer targets in passing argument 1 of 'strcat' differ in signedness
351
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:41: note: expected 'char *' but argument is of type 'FcChar8 *'
352
+ fcxml.c:2061: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness
353
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:43: note: expected 'const char *' but argument is of type 'FcChar8 *'
354
+ fcxml.c:2065: warning: pointer targets in passing argument 2 of 'GetModuleFileNameA' differ in signedness
355
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1483: note: expected 'LPSTR' but argument is of type 'FcChar8 *'
356
+ fcxml.c:2070: warning: pointer targets in assignment differ in signedness
357
+ fcxml.c:2072: warning: pointer targets in passing argument 1 of 'strcat' differ in signedness
358
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:41: note: expected 'char *' but argument is of type 'FcChar8 *'
359
+ fcxml.c:2074: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness
360
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:43: note: expected 'const char *' but argument is of type 'FcChar8 *'
361
+ fcxml.c:2079: warning: pointer targets in passing argument 1 of 'GetSystemWindowsDirectoryA' differ in signedness
362
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1573: note: expected 'LPSTR' but argument is of type 'FcChar8 *'
363
+ fcxml.c:2088: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness
364
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:49: note: expected 'const char *' but argument is of type 'FcChar8 *'
365
+ fcxml.c:2089: warning: pointer targets in passing argument 1 of 'strcat' differ in signedness
366
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:41: note: expected 'char *' but argument is of type 'FcChar8 *'
367
+ fcxml.c:2090: warning: pointer targets in passing argument 1 of 'strcat' differ in signedness
368
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:41: note: expected 'char *' but argument is of type 'FcChar8 *'
369
+ fcxml.c:2110: warning: pointer targets in passing argument 1 of 'strcmp' differ in signedness
370
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:43: note: expected 'const char *' but argument is of type 'FcChar8 *'
371
+ fcxml.c:2121: warning: pointer targets in passing argument 2 of 'GetTempPathA' differ in signedness
372
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1585: note: expected 'LPSTR' but argument is of type 'FcChar8 *'
373
+ fcxml.c:2128: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness
374
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:49: note: expected 'const char *' but argument is of type 'FcChar8 *'
375
+ fcxml.c:2129: warning: pointer targets in passing argument 1 of 'strcat' differ in signedness
376
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:41: note: expected 'char *' but argument is of type 'FcChar8 *'
377
+ fcxml.c:2130: warning: pointer targets in passing argument 1 of 'strcat' differ in signedness
378
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/string.h:41: note: expected 'char *' but argument is of type 'FcChar8 *'
379
+ CC ftglue.lo
380
+ libtool: compile: gcc -mthreads -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -I/devel/dist/win32/freetype-2.3.11-1/bin/../include/freetype2 -I/devel/dist/win32/freetype-2.3.11-1/bin/../include -I/devel/dist/win32/expat-2.0.1-1/include -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -DFC_CACHEDIR=\"WINDOWSTEMPDIR_FONTCONFIG_CACHE\" -DFONTCONFIG_PATH=\"c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts\" -O2 -MT ftglue.lo -MD -MP -MF .deps/ftglue.Tpo -c ftglue.c -DDLL_EXPORT -DPIC -o .libs/ftglue.o
381
+ echo Generating fontconfig.def
382
+ Generating fontconfig.def
383
+ (echo EXPORTS; \
384
+ (cat ../fontconfig/fontconfig.h ../src/fcdeprecate.h ../fontconfig/fcprivate.h ../fontconfig/fcfreetype.h || echo 'FcERROR ()' ) | \
385
+ grep '^Fc[^ ]* *(' | sed -e 's/ *(.*$//' -e 's/^/ /' | \
386
+ sort; \
387
+ echo LIBRARY libfontconfig-1.dll; \
388
+ echo VERSION 5.4) >fontconfig.def
389
+ CCLD libfontconfig.la
390
+ Creating library file: .libs/libfontconfig.dll.a
391
+ lib -name:libfontconfig-1.dll -def:fontconfig.def -out:fontconfig.lib
392
+ Microsoft (R) Library Manager Version 6.00.8447
393
+ Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
394
+
395
+ LIB : warning LNK4068: /MACHINE not specified; defaulting to IX86
396
+ Creating library fontconfig.lib and object fontconfig.exp
397
+ make[3]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/src'
398
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib"
399
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c libfontconfig.la 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib'
400
+ libtool: install: /opt/local/bin/install -c .libs/libfontconfig.dll.a c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/libfontconfig.dll.a
401
+ libtool: install: base_file=`basename libfontconfig.la`
402
+ libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libfontconfig.la'i; echo libfontconfig-1.dll'`
403
+ libtool: install: dldir=c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/`dirname ../bin/libfontconfig-1.dll`
404
+ libtool: install: test -d c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/../bin || mkdir -p c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/../bin
405
+ libtool: install: /opt/local/bin/install -c .libs/libfontconfig-1.dll c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/../bin/libfontconfig-1.dll
406
+ libtool: install: chmod a+x c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/../bin/libfontconfig-1.dll
407
+ libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/../bin/libfontconfig-1.dll' || exit 0; fi
408
+ libtool: install: /opt/local/bin/install -c .libs/libfontconfig.lai c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/libfontconfig.la
409
+ ----------------------------------------------------------------------
410
+ Libraries have been installed in:
411
+ c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib
412
+
413
+ If you ever happen to want to link against installed libraries
414
+ in a given directory, LIBDIR, you must either use libtool, and
415
+ specify the full pathname of the library, or use the `-LLIBDIR'
416
+ flag during linking and do at least one of the following:
417
+ - add LIBDIR to the `PATH' environment variable
418
+ during execution
419
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
420
+ during linking
421
+ - use the `-LLIBDIR' linker flag
422
+
423
+ See any operating system documentation about shared libraries for
424
+ more information, such as the ld(1) and ld.so(8) manual pages.
425
+ ----------------------------------------------------------------------
426
+ /opt/local/bin/install -c fontconfig.lib c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib
427
+ /bin/mkdir -p c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib
428
+ /opt/local/bin/install -c .libs/libfontconfig.dll.a c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib
429
+ /opt/local/bin/install -c fontconfig.def c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/fontconfig.def
430
+ make[3]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/src'
431
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/src'
432
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/src'
433
+ Making install in fc-cache
434
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-cache'
435
+ CC fc-cache.o
436
+ CCLD fc-cache.exe
437
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-cache'
438
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin"
439
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c fc-cache.exe 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin'
440
+ libtool: install: /opt/local/bin/install -c .libs/fc-cache.exe c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin/fc-cache.exe
441
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1"
442
+ /opt/local/bin/install -c -m 644 fc-cache.1 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1'
443
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-cache'
444
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-cache'
445
+ Making install in fc-cat
446
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-cat'
447
+ CC fc-cat.o
448
+ CCLD fc-cat.exe
449
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-cat'
450
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin"
451
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c fc-cat.exe 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin'
452
+ libtool: install: /opt/local/bin/install -c .libs/fc-cat.exe c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin/fc-cat.exe
453
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1"
454
+ /opt/local/bin/install -c -m 644 fc-cat.1 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1'
455
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-cat'
456
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-cat'
457
+ Making install in fc-list
458
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-list'
459
+ CC fc-list.o
460
+ CCLD fc-list.exe
461
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-list'
462
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin"
463
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c fc-list.exe 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin'
464
+ libtool: install: /opt/local/bin/install -c .libs/fc-list.exe c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin/fc-list.exe
465
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1"
466
+ /opt/local/bin/install -c -m 644 fc-list.1 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1'
467
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-list'
468
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-list'
469
+ Making install in fc-match
470
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-match'
471
+ CC fc-match.o
472
+ CCLD fc-match.exe
473
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-match'
474
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin"
475
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c fc-match.exe 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin'
476
+ libtool: install: /opt/local/bin/install -c .libs/fc-match.exe c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin/fc-match.exe
477
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1"
478
+ /opt/local/bin/install -c -m 644 fc-match.1 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1'
479
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-match'
480
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-match'
481
+ Making install in fc-query
482
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-query'
483
+ CC fc-query.o
484
+ CCLD fc-query.exe
485
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-query'
486
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin"
487
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c fc-query.exe 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin'
488
+ libtool: install: /opt/local/bin/install -c .libs/fc-query.exe c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin/fc-query.exe
489
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1"
490
+ /opt/local/bin/install -c -m 644 fc-query.1 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1'
491
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-query'
492
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-query'
493
+ Making install in fc-scan
494
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-scan'
495
+ CC fc-scan.o
496
+ CCLD fc-scan.exe
497
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-scan'
498
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin"
499
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c fc-scan.exe 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin'
500
+ libtool: install: /opt/local/bin/install -c .libs/fc-scan.exe c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin/fc-scan.exe
501
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1"
502
+ /opt/local/bin/install -c -m 644 fc-scan.1 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man1'
503
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-scan'
504
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/fc-scan'
505
+ Making install in conf.d
506
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/conf.d'
507
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/conf.d'
508
+ make[2]: Nothing to be done for `install-exec-am'.
509
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/conf.avail" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/conf.avail"
510
+ /opt/local/bin/install -c -m 644 10-autohint.conf 10-no-sub-pixel.conf 10-sub-pixel-bgr.conf 10-sub-pixel-rgb.conf 10-sub-pixel-vbgr.conf 10-sub-pixel-vrgb.conf 10-unhinted.conf 20-fix-globaladvance.conf 20-unhint-small-vera.conf 25-unhint-nonlatin.conf 30-urw-aliases.conf 30-metric-aliases.conf 40-nonlatin.conf 45-latin.conf 49-sansserif.conf 50-user.conf 51-local.conf 60-latin.conf 65-fonts-persian.conf 65-khmer.conf 65-nonlatin.conf 69-unifont.conf 70-no-bitmaps.conf 70-yes-bitmaps.conf 80-delicious.conf 90-synthetic.conf 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/conf.avail'
511
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/conf.d" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/conf.d"
512
+ /opt/local/bin/install -c -m 644 README 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/conf.d'
513
+ mkdir -p c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/conf.d
514
+ cd c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/conf.d
515
+ rm -f 20-fix-globaladvance.conf; ln -s ../conf.avail/20-fix-globaladvance.conf .
516
+ rm -f 20-unhint-small-vera.conf; ln -s ../conf.avail/20-unhint-small-vera.conf .
517
+ rm -f 30-urw-aliases.conf; ln -s ../conf.avail/30-urw-aliases.conf .
518
+ rm -f 30-metric-aliases.conf; ln -s ../conf.avail/30-metric-aliases.conf .
519
+ rm -f 40-nonlatin.conf; ln -s ../conf.avail/40-nonlatin.conf .
520
+ rm -f 45-latin.conf; ln -s ../conf.avail/45-latin.conf .
521
+ rm -f 49-sansserif.conf; ln -s ../conf.avail/49-sansserif.conf .
522
+ rm -f 50-user.conf; ln -s ../conf.avail/50-user.conf .
523
+ rm -f 51-local.conf; ln -s ../conf.avail/51-local.conf .
524
+ rm -f 60-latin.conf; ln -s ../conf.avail/60-latin.conf .
525
+ rm -f 65-fonts-persian.conf; ln -s ../conf.avail/65-fonts-persian.conf .
526
+ rm -f 65-nonlatin.conf; ln -s ../conf.avail/65-nonlatin.conf .
527
+ rm -f 69-unifont.conf; ln -s ../conf.avail/69-unifont.conf .
528
+ rm -f 80-delicious.conf; ln -s ../conf.avail/80-delicious.conf .
529
+ rm -f 90-synthetic.conf; ln -s ../conf.avail/90-synthetic.conf .
530
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/conf.d'
531
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/conf.d'
532
+ Making install in doc
533
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/doc'
534
+ CC edit-sgml.o
535
+ CCLD edit-sgml.exe
536
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/doc'
537
+ make[2]: Nothing to be done for `install-exec-am'.
538
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig"
539
+ /opt/local/bin/install -c -m 644 fontconfig-user.txt fontconfig-devel.txt fontconfig-user.pdf fontconfig-devel.pdf fontconfig-user.html 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig'
540
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig/fontconfig-devel" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig/fontconfig-devel"
541
+ /opt/local/bin/install -c -m 644 ./fontconfig-devel/fcatomiccreate.html ./fontconfig-devel/fcatomicdeletenew.html ./fontconfig-devel/fcatomicdestroy.html ./fontconfig-devel/fcatomiclock.html ./fontconfig-devel/fcatomicnewfile.html ./fontconfig-devel/fcatomicorigfile.html ./fontconfig-devel/fcatomicreplaceorig.html ./fontconfig-devel/fcatomicunlock.html ./fontconfig-devel/fcblanksadd.html ./fontconfig-devel/fcblankscreate.html ./fontconfig-devel/fcblanksdestroy.html ./fontconfig-devel/fcblanksismember.html ./fontconfig-devel/fccachecopyset.html ./fontconfig-devel/fccachedir.html ./fontconfig-devel/fccachenumfont.html ./fontconfig-devel/fccachenumsubdir.html ./fontconfig-devel/fccachesubdir.html ./fontconfig-devel/fccharsetaddchar.html ./fontconfig-devel/fccharsetcopy.html ./fontconfig-devel/fccharsetcount.html ./fontconfig-devel/fccharsetcoverage.html ./fontconfig-devel/fccharsetcreate.html ./fontconfig-devel/fccharsetdestroy.html ./fontconfig-devel/fccharsetequal.html ./fontconfig-devel/fccharsetfirstpage.html ./fontconfig-devel/fccharsethaschar.html ./fontconfig-devel/fccharsetintersect.html ./fontconfig-devel/fccharsetintersectcount.html ./fontconfig-devel/fccharsetissubset.html ./fontconfig-devel/fccharsetmerge.html ./fontconfig-devel/fccharsetnew.html ./fontconfig-devel/fccharsetnextpage.html ./fontconfig-devel/fccharsetsubtract.html ./fontconfig-devel/fccharsetsubtractcount.html ./fontconfig-devel/fccharsetunion.html ./fontconfig-devel/fcconfigappfontadddir.html ./fontconfig-devel/fcconfigappfontaddfile.html ./fontconfig-devel/fcconfigappfontclear.html ./fontconfig-devel/fcconfigbuildfonts.html ./fontconfig-devel/fcconfigcreate.html 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig/fontconfig-devel'
542
+ /opt/local/bin/install -c -m 644 ./fontconfig-devel/fcconfigdestroy.html ./fontconfig-devel/fcconfigenablehome.html ./fontconfig-devel/fcconfigfilename.html ./fontconfig-devel/fcconfiggetblanks.html ./fontconfig-devel/fcconfiggetcache.html ./fontconfig-devel/fcconfiggetcachedirs.html ./fontconfig-devel/fcconfiggetconfigdirs.html ./fontconfig-devel/fcconfiggetconfigfiles.html ./fontconfig-devel/fcconfiggetcurrent.html ./fontconfig-devel/fcconfiggetfontdirs.html ./fontconfig-devel/fcconfiggetfonts.html ./fontconfig-devel/fcconfiggetrescaninterval.html ./fontconfig-devel/fcconfighome.html ./fontconfig-devel/fcconfigparseandload.html ./fontconfig-devel/fcconfigreference.html ./fontconfig-devel/fcconfigsetcurrent.html ./fontconfig-devel/fcconfigsetrescaninterval.html ./fontconfig-devel/fcconfigsubstitute.html ./fontconfig-devel/fcconfigsubstitutewithpat.html ./fontconfig-devel/fcconfiguptodate.html ./fontconfig-devel/fcdefaultsubstitute.html ./fontconfig-devel/fcdircacheload.html ./fontconfig-devel/fcdircacheloadfile.html ./fontconfig-devel/fcdircacheread.html ./fontconfig-devel/fcdircacheunlink.html ./fontconfig-devel/fcdircacheunload.html ./fontconfig-devel/fcdircachevalid.html ./fontconfig-devel/fcdirsave.html ./fontconfig-devel/fcdirscan.html ./fontconfig-devel/fcfileisdir.html ./fontconfig-devel/fcfilescan.html ./fontconfig-devel/fcfini.html ./fontconfig-devel/fcfontlist.html ./fontconfig-devel/fcfontmatch.html ./fontconfig-devel/fcfontrenderprepare.html ./fontconfig-devel/fcfontsetadd.html ./fontconfig-devel/fcfontsetcreate.html ./fontconfig-devel/fcfontsetdestroy.html ./fontconfig-devel/fcfontsetlist.html ./fontconfig-devel/fcfontsetmatch.html 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig/fontconfig-devel'
543
+ /opt/local/bin/install -c -m 644 ./fontconfig-devel/fcfontsetprint.html ./fontconfig-devel/fcfontsetsort.html ./fontconfig-devel/fcfontsetsortdestroy.html ./fontconfig-devel/fcfontsort.html ./fontconfig-devel/fcfreetypecharindex.html ./fontconfig-devel/fcfreetypecharset.html ./fontconfig-devel/fcfreetypecharsetandspacing.html ./fontconfig-devel/fcfreetypequery.html ./fontconfig-devel/fcfreetypequeryface.html ./fontconfig-devel/fcgetlangs.html ./fontconfig-devel/fcgetversion.html ./fontconfig-devel/fcinit.html ./fontconfig-devel/fcinitbringuptodate.html ./fontconfig-devel/fcinitloadconfig.html ./fontconfig-devel/fcinitloadconfigandfonts.html ./fontconfig-devel/fcinitreinitialize.html ./fontconfig-devel/fcislower.html ./fontconfig-devel/fcisupper.html ./fontconfig-devel/fclanggetcharset.html ./fontconfig-devel/fclangsetadd.html ./fontconfig-devel/fclangsetcompare.html ./fontconfig-devel/fclangsetcontains.html ./fontconfig-devel/fclangsetcopy.html ./fontconfig-devel/fclangsetcreate.html ./fontconfig-devel/fclangsetdestroy.html ./fontconfig-devel/fclangsetequal.html ./fontconfig-devel/fclangsetgetlangs.html ./fontconfig-devel/fclangsethash.html ./fontconfig-devel/fclangsethaslang.html ./fontconfig-devel/fcmatrixcopy.html ./fontconfig-devel/fcmatrixequal.html ./fontconfig-devel/fcmatrixinit.html ./fontconfig-devel/fcmatrixmultiply.html ./fontconfig-devel/fcmatrixrotate.html ./fontconfig-devel/fcmatrixscale.html ./fontconfig-devel/fcmatrixshear.html ./fontconfig-devel/fcnameconstant.html ./fontconfig-devel/fcnamegetconstant.html ./fontconfig-devel/fcnamegetobjecttype.html ./fontconfig-devel/fcnameparse.html 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig/fontconfig-devel'
544
+ /opt/local/bin/install -c -m 644 ./fontconfig-devel/fcnameregisterconstants.html ./fontconfig-devel/fcnameregisterobjecttypes.html ./fontconfig-devel/fcnameunparse.html ./fontconfig-devel/fcnameunregisterconstants.html ./fontconfig-devel/fcnameunregisterobjecttypes.html ./fontconfig-devel/fcobjectsetadd.html ./fontconfig-devel/fcobjectsetbuild.html ./fontconfig-devel/fcobjectsetcreate.html ./fontconfig-devel/fcobjectsetdestroy.html ./fontconfig-devel/fcpatternadd-type.html ./fontconfig-devel/fcpatternadd.html ./fontconfig-devel/fcpatternaddweak.html ./fontconfig-devel/fcpatternbuild.html ./fontconfig-devel/fcpatterncreate.html ./fontconfig-devel/fcpatterndel.html ./fontconfig-devel/fcpatterndestroy.html ./fontconfig-devel/fcpatternduplicate.html ./fontconfig-devel/fcpatternequal.html ./fontconfig-devel/fcpatternequalsubset.html ./fontconfig-devel/fcpatternfilter.html ./fontconfig-devel/fcpatternformat.html ./fontconfig-devel/fcpatternget-type.html ./fontconfig-devel/fcpatternget.html ./fontconfig-devel/fcpatternhash.html ./fontconfig-devel/fcpatternprint.html ./fontconfig-devel/fcpatternreference.html ./fontconfig-devel/fcpatternremove.html ./fontconfig-devel/fcstrbasename.html ./fontconfig-devel/fcstrcmp.html ./fontconfig-devel/fcstrcmpignorecase.html ./fontconfig-devel/fcstrcopy.html ./fontconfig-devel/fcstrcopyfilename.html ./fontconfig-devel/fcstrdirname.html ./fontconfig-devel/fcstrdowncase.html ./fontconfig-devel/fcstrfree.html ./fontconfig-devel/fcstrlistcreate.html ./fontconfig-devel/fcstrlistdone.html ./fontconfig-devel/fcstrlistnext.html ./fontconfig-devel/fcstrplus.html ./fontconfig-devel/fcstrsetadd.html 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig/fontconfig-devel'
545
+ /opt/local/bin/install -c -m 644 ./fontconfig-devel/fcstrsetaddfilename.html ./fontconfig-devel/fcstrsetcreate.html ./fontconfig-devel/fcstrsetdel.html ./fontconfig-devel/fcstrsetdestroy.html ./fontconfig-devel/fcstrsetequal.html ./fontconfig-devel/fcstrsetmember.html ./fontconfig-devel/fcstrstr.html ./fontconfig-devel/fcstrstrignorecase.html ./fontconfig-devel/fctolower.html ./fontconfig-devel/fcucs4toutf8.html ./fontconfig-devel/fcutf16len.html ./fontconfig-devel/fcutf16toucs4.html ./fontconfig-devel/fcutf8len.html ./fontconfig-devel/fcutf8toucs4.html ./fontconfig-devel/fcvaluedestroy.html ./fontconfig-devel/fcvalueequal.html ./fontconfig-devel/fcvalueprint.html ./fontconfig-devel/fcvaluesave.html ./fontconfig-devel/ln12.html ./fontconfig-devel/t1.html ./fontconfig-devel/x102.html ./fontconfig-devel/x19.html ./fontconfig-devel/x31.html 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/doc/fontconfig/fontconfig-devel'
546
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man3" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man3"
547
+ /opt/local/bin/install -c -m 644 FcAtomicCreate.3 FcAtomicLock.3 FcAtomicNewFile.3 FcAtomicOrigFile.3 FcAtomicReplaceOrig.3 FcAtomicDeleteNew.3 FcAtomicUnlock.3 FcAtomicDestroy.3 FcBlanksCreate.3 FcBlanksDestroy.3 FcBlanksAdd.3 FcBlanksIsMember.3 FcCacheDir.3 FcCacheCopySet.3 FcCacheSubdir.3 FcCacheNumSubdir.3 FcCacheNumFont.3 FcCharSetCreate.3 FcCharSetDestroy.3 FcCharSetAddChar.3 FcCharSetCopy.3 FcCharSetEqual.3 FcCharSetIntersect.3 FcCharSetUnion.3 FcCharSetSubtract.3 FcCharSetMerge.3 FcCharSetHasChar.3 FcCharSetCount.3 FcCharSetIntersectCount.3 FcCharSetSubtractCount.3 FcCharSetIsSubset.3 FcCharSetFirstPage.3 FcCharSetNextPage.3 FcCharSetCoverage.3 FcCharSetNew.3 FcConfigCreate.3 FcConfigReference.3 FcConfigDestroy.3 FcConfigSetCurrent.3 FcConfigGetCurrent.3 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man3'
548
+ /opt/local/bin/install -c -m 644 FcConfigUptoDate.3 FcConfigHome.3 FcConfigEnableHome.3 FcConfigBuildFonts.3 FcConfigGetConfigDirs.3 FcConfigGetFontDirs.3 FcConfigGetConfigFiles.3 FcConfigGetCache.3 FcConfigGetCacheDirs.3 FcConfigGetFonts.3 FcConfigGetBlanks.3 FcConfigGetRescanInterval.3 FcConfigSetRescanInterval.3 FcConfigAppFontAddFile.3 FcConfigAppFontAddDir.3 FcConfigAppFontClear.3 FcConfigSubstituteWithPat.3 FcConfigSubstitute.3 FcFontMatch.3 FcFontSort.3 FcFontRenderPrepare.3 FcFontList.3 FcConfigFilename.3 FcConfigParseAndLoad.3 FcNameRegisterConstants.3 FcNameUnregisterConstants.3 FcNameGetConstant.3 FcNameConstant.3 FcDirCacheUnlink.3 FcDirCacheValid.3 FcDirCacheLoad.3 FcDirCacheRead.3 FcDirCacheLoadFile.3 FcDirCacheUnload.3 FcFileScan.3 FcFileIsDir.3 FcDirScan.3 FcDirSave.3 FcFontSetCreate.3 FcFontSetDestroy.3 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man3'
549
+ /opt/local/bin/install -c -m 644 FcFontSetAdd.3 FcFontSetList.3 FcFontSetMatch.3 FcFontSetPrint.3 FcFontSetSort.3 FcFontSetSortDestroy.3 FcPatternFormat.3 FcFreeTypeCharIndex.3 FcFreeTypeCharSet.3 FcFreeTypeCharSetAndSpacing.3 FcFreeTypeQuery.3 FcFreeTypeQueryFace.3 FcInitLoadConfig.3 FcInitLoadConfigAndFonts.3 FcInit.3 FcFini.3 FcGetVersion.3 FcInitReinitialize.3 FcInitBringUptoDate.3 FcLangSetCreate.3 FcLangSetDestroy.3 FcLangSetCopy.3 FcLangSetAdd.3 FcLangSetCompare.3 FcLangSetContains.3 FcLangSetEqual.3 FcLangSetHash.3 FcLangSetHasLang.3 FcLangSetGetLangs.3 FcGetLangs.3 FcLangGetCharSet.3 FcMatrixInit.3 FcMatrixCopy.3 FcMatrixEqual.3 FcMatrixMultiply.3 FcMatrixRotate.3 FcMatrixScale.3 FcMatrixShear.3 FcObjectSetCreate.3 FcObjectSetAdd.3 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man3'
550
+ /opt/local/bin/install -c -m 644 FcObjectSetDestroy.3 FcObjectSetBuild.3 FcNameRegisterObjectTypes.3 FcNameUnregisterObjectTypes.3 FcNameGetObjectType.3 FcPatternCreate.3 FcPatternDuplicate.3 FcPatternReference.3 FcPatternDestroy.3 FcPatternEqual.3 FcPatternEqualSubset.3 FcPatternFilter.3 FcPatternHash.3 FcPatternAdd.3 FcPatternAddWeak.3 FcPatternAdd-Type.3 FcPatternGet.3 FcPatternGet-Type.3 FcPatternBuild.3 FcPatternDel.3 FcPatternRemove.3 FcPatternPrint.3 FcDefaultSubstitute.3 FcNameParse.3 FcNameUnparse.3 FcUtf8ToUcs4.3 FcUcs4ToUtf8.3 FcUtf8Len.3 FcUtf16ToUcs4.3 FcUtf16Len.3 FcIsLower.3 FcIsUpper.3 FcToLower.3 FcStrCopy.3 FcStrDowncase.3 FcStrCopyFilename.3 FcStrCmp.3 FcStrCmpIgnoreCase.3 FcStrStr.3 FcStrStrIgnoreCase.3 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man3'
551
+ /opt/local/bin/install -c -m 644 FcStrPlus.3 FcStrFree.3 FcStrDirname.3 FcStrBasename.3 FcStrSetCreate.3 FcStrSetMember.3 FcStrSetEqual.3 FcStrSetAdd.3 FcStrSetAddFilename.3 FcStrSetDel.3 FcStrSetDestroy.3 FcStrListCreate.3 FcStrListNext.3 FcStrListDone.3 FcValueDestroy.3 FcValueSave.3 FcValuePrint.3 FcValueEqual.3 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man3'
552
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man5" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man5"
553
+ /opt/local/bin/install -c -m 644 fonts-conf.5 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/share/man/man5'
554
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/doc'
555
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/doc'
556
+ Making install in test
557
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/test'
558
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/test'
559
+ make[2]: Nothing to be done for `install-exec-am'.
560
+ make[2]: Nothing to be done for `install-data-am'.
561
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/test'
562
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32/test'
563
+ make[1]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32'
564
+ make[2]: Entering directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32'
565
+ make[2]: Nothing to be done for `install-exec-am'.
566
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts"
567
+ /opt/local/bin/install -c -m 644 fonts.dtd 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts'
568
+ sed \
569
+ -e 's,@FC_CACHEDIR\@,WINDOWSTEMPDIR_FONTCONFIG_CACHE,g' \
570
+ -e 's,@FC_DEFAULT_FONTS\@,WINDOWSFONTDIR,g' \
571
+ -e 's,@FC_FONTPATH\@,,g' \
572
+ -e 's,@PACKAGE\@,fontconfig,g' \
573
+ -e 's,@VERSION\@,2.8.0,g' \
574
+ fonts.conf.in > fonts.conf.tmp && \
575
+ mv fonts.conf.tmp fonts.conf
576
+ /bin/sh /devel/src/freedesktop/fontconfig/2.8.0-2_win32/install-sh -d c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts WINDOWSTEMPDIR_FONTCONFIG_CACHE
577
+ if [ -f c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/fonts.conf ]; then \
578
+ echo "backing up existing c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/fonts.conf"; \
579
+ mv c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/fonts.conf c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/fonts.conf.bak; \
580
+ fi
581
+ if [ -f ./fonts.conf ]; then \
582
+ echo " /opt/local/bin/install -c -m 644 ./fonts.conf c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/fonts.conf"; \
583
+ /opt/local/bin/install -c -m 644 ./fonts.conf c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/fonts.conf; \
584
+ else if [ -f fonts.conf ]; then \
585
+ echo " /opt/local/bin/install -c -m 644 fonts.conf c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/fonts.conf"; \
586
+ /opt/local/bin/install -c -m 644 fonts.conf c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/fonts.conf; \
587
+ fi; fi
588
+ /opt/local/bin/install -c -m 644 ./fonts.conf c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/etc/fonts/fonts.conf
589
+ c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/bin/fc-cache -s -f -v
590
+ C:/Windows/fonts: caching, new cache contents: 1027 fonts, 0 dirs
591
+ C:/Users/tml/AppData/Local/Temp/fontconfig/cache: cleaning cache directory
592
+ c:\devel\target\e1fce2466937a6fa6e065a0c7d689ba4\bin\fc-cache.exe: succeeded
593
+ test -z "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/pkgconfig" || /bin/mkdir -p "c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/pkgconfig"
594
+ /opt/local/bin/install -c -m 644 fontconfig.pc 'c:/devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib/pkgconfig'
595
+ make[2]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32'
596
+ make[1]: Leaving directory `/devel/src/freedesktop/fontconfig/2.8.0-2_win32'
597
+ ++ cd /devel/target/e1fce2466937a6fa6e065a0c7d689ba4/lib
598
+ ++ lib.exe -machine:IX86 -def:fontconfig.def -out:fontconfig.lib
599
+ Microsoft (R) Library Manager Version 6.00.8447
600
+ Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
601
+
602
+ Creating library fontconfig.lib and object fontconfig.exp
603
+ ++ sed -e s/@VERSION@/2.8.0/
604
+ ++ mv fontconfig-zip.in.tem fontconfig-zip.in
605
+ ++ ./config.status --file=fontconfig-zip
606
+ config.status: creating fontconfig-zip
607
+ ++ ./fontconfig-zip
608
+ adding: bin/libfontconfig-1.dll (200 bytes security) (deflated 54%)
609
+ adding: etc/fonts/fonts.conf (200 bytes security) (deflated 67%)
610
+ adding: etc/fonts/fonts.dtd (200 bytes security) (deflated 70%)
611
+ adding: include/fontconfig/fcfreetype.h (200 bytes security) (deflated 51%)
612
+ adding: include/fontconfig/fcprivate.h (200 bytes security) (deflated 65%)
613
+ adding: include/fontconfig/fontconfig.h (200 bytes security) (deflated 74%)
614
+ adding: lib/libfontconfig.dll.a (200 bytes security) (deflated 93%)
615
+ adding: lib/fontconfig.lib (200 bytes security) (deflated 86%)
616
+ adding: lib/fontconfig.def (200 bytes security) (deflated 71%)
617
+ adding: lib/pkgconfig/fontconfig.pc (200 bytes security) (deflated 38%)
618
+ adding: bin/fc-list.exe (200 bytes security) (deflated 70%)
619
+ adding: bin/fc-cache.exe (200 bytes security) (deflated 69%)
620
+ adding: share/man/man1/fc-cache.1 (200 bytes security) (deflated 51%)
621
+ adding: share/man/man1/fc-cat.1 (200 bytes security) (deflated 46%)
622
+ adding: share/man/man1/fc-list.1 (200 bytes security) (deflated 51%)
623
+ adding: share/man/man1/fc-match.1 (200 bytes security) (deflated 54%)
624
+ adding: share/man/man1/fc-query.1 (200 bytes security) (deflated 49%)
625
+ adding: share/man/man1/fc-scan.1 (200 bytes security) (deflated 47%)
626
+ adding: share/man/man3/FcAtomicCreate.3 (200 bytes security) (deflated 37%)
627
+ adding: share/man/man3/FcAtomicDeleteNew.3 (200 bytes security) (deflated 31%)
628
+ adding: share/man/man3/FcAtomicDestroy.3 (200 bytes security) (deflated 32%)
629
+ adding: share/man/man3/FcAtomicLock.3 (200 bytes security) (deflated 34%)
630
+ adding: share/man/man3/FcAtomicNewFile.3 (200 bytes security) (deflated 33%)
631
+ adding: share/man/man3/FcAtomicOrigFile.3 (200 bytes security) (deflated 31%)
632
+ adding: share/man/man3/FcAtomicReplaceOrig.3 (200 bytes security) (deflated 38%)
633
+ adding: share/man/man3/FcAtomicUnlock.3 (200 bytes security) (deflated 29%)
634
+ adding: share/man/man3/FcBlanksAdd.3 (200 bytes security) (deflated 32%)
635
+ adding: share/man/man3/FcBlanksCreate.3 (200 bytes security) (deflated 31%)
636
+ adding: share/man/man3/FcBlanksDestroy.3 (200 bytes security) (deflated 31%)
637
+ adding: share/man/man3/FcBlanksIsMember.3 (200 bytes security) (deflated 32%)
638
+ adding: share/man/man3/FcCacheCopySet.3 (200 bytes security) (deflated 36%)
639
+ adding: share/man/man3/FcCacheDir.3 (200 bytes security) (deflated 31%)
640
+ adding: share/man/man3/FcCacheNumFont.3 (200 bytes security) (deflated 35%)
641
+ adding: share/man/man3/FcCacheNumSubdir.3 (200 bytes security) (deflated 36%)
642
+ adding: share/man/man3/FcCacheSubdir.3 (200 bytes security) (deflated 35%)
643
+ adding: share/man/man3/FcCharSetAddChar.3 (200 bytes security) (deflated 36%)
644
+ adding: share/man/man3/FcCharSetCopy.3 (200 bytes security) (deflated 33%)
645
+ adding: share/man/man3/FcCharSetCount.3 (200 bytes security) (deflated 31%)
646
+ adding: share/man/man3/FcCharSetCoverage.3 (200 bytes security) (deflated 41%)
647
+ adding: share/man/man3/FcCharSetCreate.3 (200 bytes security) (deflated 33%)
648
+ adding: share/man/man3/FcCharSetDestroy.3 (200 bytes security) (deflated 37%)
649
+ adding: share/man/man3/FcCharSetEqual.3 (200 bytes security) (deflated 33%)
650
+ adding: share/man/man3/FcCharSetFirstPage.3 (200 bytes security) (deflated 37%)
651
+ adding: share/man/man3/FcCharSetHasChar.3 (200 bytes security) (deflated 33%)
652
+ adding: share/man/man3/FcCharSetIntersect.3 (200 bytes security) (deflated 38%)
653
+ adding: share/man/man3/FcCharSetIntersectCount.3 (200 bytes security) (deflated 38%)
654
+ adding: share/man/man3/FcCharSetIsSubset.3 (200 bytes security) (deflated 35%)
655
+ adding: share/man/man3/FcCharSetMerge.3 (200 bytes security) (deflated 40%)
656
+ adding: share/man/man3/FcCharSetNew.3 (200 bytes security) (deflated 35%)
657
+ adding: share/man/man3/FcCharSetNextPage.3 (200 bytes security) (deflated 36%)
658
+ adding: share/man/man3/FcCharSetSubtract.3 (200 bytes security) (deflated 37%)
659
+ adding: share/man/man3/FcCharSetSubtractCount.3 (200 bytes security) (deflated 38%)
660
+ adding: share/man/man3/FcCharSetUnion.3 (200 bytes security) (deflated 35%)
661
+ adding: share/man/man3/FcConfigAppFontAddDir.3 (200 bytes security) (deflated 38%)
662
+ adding: share/man/man3/FcConfigAppFontAddFile.3 (200 bytes security) (deflated 38%)
663
+ adding: share/man/man3/FcConfigAppFontClear.3 (200 bytes security) (deflated 35%)
664
+ adding: share/man/man3/FcConfigBuildFonts.3 (200 bytes security) (deflated 38%)
665
+ adding: share/man/man3/FcConfigCreate.3 (200 bytes security) (deflated 32%)
666
+ adding: share/man/man3/FcConfigDestroy.3 (200 bytes security) (deflated 40%)
667
+ adding: share/man/man3/FcConfigEnableHome.3 (200 bytes security) (deflated 40%)
668
+ adding: share/man/man3/FcConfigFilename.3 (200 bytes security) (deflated 46%)
669
+ adding: share/man/man3/FcConfigGetBlanks.3 (200 bytes security) (deflated 41%)
670
+ adding: share/man/man3/FcConfigGetCache.3 (200 bytes security) (deflated 34%)
671
+ adding: share/man/man3/FcConfigGetCacheDirs.3 (200 bytes security) (deflated 40%)
672
+ adding: share/man/man3/FcConfigGetConfigDirs.3 (200 bytes security) (deflated 40%)
673
+ adding: share/man/man3/FcConfigGetConfigFiles.3 (200 bytes security) (deflated 39%)
674
+ adding: share/man/man3/FcConfigGetCurrent.3 (200 bytes security) (deflated 34%)
675
+ adding: share/man/man3/FcConfigGetFontDirs.3 (200 bytes security) (deflated 40%)
676
+ adding: share/man/man3/FcConfigGetFonts.3 (200 bytes security) (deflated 38%)
677
+ adding: share/man/man3/FcConfigGetRescanInterval.3 (200 bytes security) (deflated 43%)
678
+ adding: share/man/man3/FcConfigHome.3 (200 bytes security) (deflated 33%)
679
+ adding: share/man/man3/FcConfigParseAndLoad.3 (200 bytes security) (deflated 42%)
680
+ adding: share/man/man3/FcConfigReference.3 (200 bytes security) (deflated 42%)
681
+ adding: share/man/man3/FcConfigSetCurrent.3 (200 bytes security) (deflated 36%)
682
+ adding: share/man/man3/FcConfigSetRescanInterval.3 (200 bytes security) (deflated 40%)
683
+ adding: share/man/man3/FcConfigSubstitute.3 (200 bytes security) (deflated 38%)
684
+ adding: share/man/man3/FcConfigSubstituteWithPat.3 (200 bytes security) (deflated 46%)
685
+ adding: share/man/man3/FcConfigUptoDate.3 (200 bytes security) (deflated 37%)
686
+ adding: share/man/man3/FcDefaultSubstitute.3 (200 bytes security) (deflated 45%)
687
+ adding: share/man/man3/FcDirCacheLoad.3 (200 bytes security) (deflated 38%)
688
+ adding: share/man/man3/FcDirCacheLoadFile.3 (200 bytes security) (deflated 36%)
689
+ adding: share/man/man3/FcDirCacheRead.3 (200 bytes security) (deflated 36%)
690
+ adding: share/man/man3/FcDirCacheUnlink.3 (200 bytes security) (deflated 35%)
691
+ adding: share/man/man3/FcDirCacheUnload.3 (200 bytes security) (deflated 32%)
692
+ adding: share/man/man3/FcDirCacheValid.3 (200 bytes security) (deflated 31%)
693
+ adding: share/man/man3/FcDirSave.3 (200 bytes security) (deflated 37%)
694
+ adding: share/man/man3/FcDirScan.3 (200 bytes security) (deflated 41%)
695
+ adding: share/man/man3/FcFileIsDir.3 (200 bytes security) (deflated 30%)
696
+ adding: share/man/man3/FcFileScan.3 (200 bytes security) (deflated 44%)
697
+ adding: share/man/man3/FcFini.3 (200 bytes security) (deflated 35%)
698
+ adding: share/man/man3/FcFontList.3 (200 bytes security) (deflated 36%)
699
+ adding: share/man/man3/FcFontMatch.3 (200 bytes security) (deflated 40%)
700
+ adding: share/man/man3/FcFontRenderPrepare.3 (200 bytes security) (deflated 43%)
701
+ adding: share/man/man3/FcFontSetAdd.3 (200 bytes security) (deflated 38%)
702
+ adding: share/man/man3/FcFontSetCreate.3 (200 bytes security) (deflated 30%)
703
+ adding: share/man/man3/FcFontSetDestroy.3 (200 bytes security) (deflated 33%)
704
+ adding: share/man/man3/FcFontSetList.3 (200 bytes security) (deflated 42%)
705
+ adding: share/man/man3/FcFontSetMatch.3 (200 bytes security) (deflated 44%)
706
+ adding: share/man/man3/FcFontSetPrint.3 (200 bytes security) (deflated 34%)
707
+ adding: share/man/man3/FcFontSetSort.3 (200 bytes security) (deflated 48%)
708
+ adding: share/man/man3/FcFontSetSortDestroy.3 (200 bytes security) (deflated 40%)
709
+ adding: share/man/man3/FcFontSort.3 (200 bytes security) (deflated 47%)
710
+ adding: share/man/man3/FcFreeTypeCharIndex.3 (200 bytes security) (deflated 38%)
711
+ adding: share/man/man3/FcFreeTypeCharSet.3 (200 bytes security) (deflated 38%)
712
+ adding: share/man/man3/FcFreeTypeCharSetAndSpacing.3 (200 bytes security) (deflated 45%)
713
+ adding: share/man/man3/FcFreeTypeQuery.3 (200 bytes security) (deflated 36%)
714
+ adding: share/man/man3/FcFreeTypeQueryFace.3 (200 bytes security) (deflated 36%)
715
+ adding: share/man/man3/FcGetLangs.3 (200 bytes security) (deflated 27%)
716
+ adding: share/man/man3/FcGetVersion.3 (200 bytes security) (deflated 31%)
717
+ adding: share/man/man3/FcInit.3 (200 bytes security) (deflated 37%)
718
+ adding: share/man/man3/FcInitBringUptoDate.3 (200 bytes security) (deflated 40%)
719
+ adding: share/man/man3/FcInitLoadConfig.3 (200 bytes security) (deflated 35%)
720
+ adding: share/man/man3/FcInitLoadConfigAndFonts.3 (200 bytes security) (deflated 37%)
721
+ adding: share/man/man3/FcInitReinitialize.3 (200 bytes security) (deflated 40%)
722
+ adding: share/man/man3/FcIsLower.3 (200 bytes security) (deflated 29%)
723
+ adding: share/man/man3/FcIsUpper.3 (200 bytes security) (deflated 29%)
724
+ adding: share/man/man3/FcLangGetCharSet.3 (200 bytes security) (deflated 33%)
725
+ adding: share/man/man3/FcLangSetAdd.3 (200 bytes security) (deflated 35%)
726
+ adding: share/man/man3/FcLangSetCompare.3 (200 bytes security) (deflated 48%)
727
+ adding: share/man/man3/FcLangSetContains.3 (200 bytes security) (deflated 43%)
728
+ adding: share/man/man3/FcLangSetCopy.3 (200 bytes security) (deflated 34%)
729
+ adding: share/man/man3/FcLangSetCreate.3 (200 bytes security) (deflated 34%)
730
+ adding: share/man/man3/FcLangSetDestroy.3 (200 bytes security) (deflated 34%)
731
+ adding: share/man/man3/FcLangSetEqual.3 (200 bytes security) (deflated 34%)
732
+ adding: share/man/man3/FcLangSetGetLangs.3 (200 bytes security) (deflated 33%)
733
+ adding: share/man/man3/FcLangSetHash.3 (200 bytes security) (deflated 37%)
734
+ adding: share/man/man3/FcLangSetHasLang.3 (200 bytes security) (deflated 47%)
735
+ adding: share/man/man3/FcMatrixCopy.3 (200 bytes security) (deflated 33%)
736
+ adding: share/man/man3/FcMatrixEqual.3 (200 bytes security) (deflated 38%)
737
+ adding: share/man/man3/FcMatrixInit.3 (200 bytes security) (deflated 33%)
738
+ adding: share/man/man3/FcMatrixMultiply.3 (200 bytes security) (deflated 42%)
739
+ adding: share/man/man3/FcMatrixRotate.3 (200 bytes security) (deflated 40%)
740
+ adding: share/man/man3/FcMatrixScale.3 (200 bytes security) (deflated 39%)
741
+ adding: share/man/man3/FcMatrixShear.3 (200 bytes security) (deflated 38%)
742
+ adding: share/man/man3/FcNameConstant.3 (200 bytes security) (deflated 36%)
743
+ adding: share/man/man3/FcNameGetConstant.3 (200 bytes security) (deflated 35%)
744
+ adding: share/man/man3/FcNameGetObjectType.3 (200 bytes security) (deflated 34%)
745
+ adding: share/man/man3/FcNameParse.3 (200 bytes security) (deflated 30%)
746
+ adding: share/man/man3/FcNameRegisterConstants.3 (200 bytes security) (deflated 40%)
747
+ adding: share/man/man3/FcNameRegisterObjectTypes.3 (200 bytes security) (deflated 38%)
748
+ adding: share/man/man3/FcNameUnparse.3 (200 bytes security) (deflated 32%)
749
+ adding: share/man/man3/FcNameUnregisterConstants.3 (200 bytes security) (deflated 41%)
750
+ adding: share/man/man3/FcNameUnregisterObjectTypes.3 (200 bytes security) (deflated 38%)
751
+ adding: share/man/man3/FcObjectSetAdd.3 (200 bytes security) (deflated 35%)
752
+ adding: share/man/man3/FcObjectSetBuild.3 (200 bytes security) (deflated 50%)
753
+ adding: share/man/man3/FcObjectSetCreate.3 (200 bytes security) (deflated 31%)
754
+ adding: share/man/man3/FcObjectSetDestroy.3 (200 bytes security) (deflated 33%)
755
+ adding: share/man/man3/FcPatternAdd-Type.3 (200 bytes security) (deflated 64%)
756
+ adding: share/man/man3/FcPatternAdd.3 (200 bytes security) (deflated 39%)
757
+ adding: share/man/man3/FcPatternAddWeak.3 (200 bytes security) (deflated 37%)
758
+ adding: share/man/man3/FcPatternBuild.3 (200 bytes security) (deflated 52%)
759
+ adding: share/man/man3/FcPatternCreate.3 (200 bytes security) (deflated 32%)
760
+ adding: share/man/man3/FcPatternDel.3 (200 bytes security) (deflated 33%)
761
+ adding: share/man/man3/FcPatternDestroy.3 (200 bytes security) (deflated 36%)
762
+ adding: share/man/man3/FcPatternDuplicate.3 (200 bytes security) (deflated 35%)
763
+ adding: share/man/man3/FcPatternEqual.3 (200 bytes security) (deflated 33%)
764
+ adding: share/man/man3/FcPatternEqualSubset.3 (200 bytes security) (deflated 37%)
765
+ adding: share/man/man3/FcPatternFilter.3 (200 bytes security) (deflated 36%)
766
+ adding: share/man/man3/FcPatternFormat.3 (200 bytes security) (deflated 66%)
767
+ adding: share/man/man3/FcPatternGet-Type.3 (200 bytes security) (deflated 65%)
768
+ adding: share/man/man3/FcPatternGet.3 (200 bytes security) (deflated 36%)
769
+ adding: share/man/man3/FcPatternHash.3 (200 bytes security) (deflated 30%)
770
+ adding: share/man/man3/FcPatternPrint.3 (200 bytes security) (deflated 34%)
771
+ adding: share/man/man3/FcPatternReference.3 (200 bytes security) (deflated 36%)
772
+ adding: share/man/man3/FcPatternRemove.3 (200 bytes security) (deflated 37%)
773
+ adding: share/man/man3/FcStrBasename.3 (200 bytes security) (deflated 33%)
774
+ adding: share/man/man3/FcStrCmp.3 (200 bytes security) (deflated 30%)
775
+ adding: share/man/man3/FcStrCmpIgnoreCase.3 (200 bytes security) (deflated 35%)
776
+ adding: share/man/man3/FcStrCopy.3 (200 bytes security) (deflated 29%)
777
+ adding: share/man/man3/FcStrCopyFilename.3 (200 bytes security) (deflated 43%)
778
+ adding: share/man/man3/FcStrDirname.3 (200 bytes security) (deflated 32%)
779
+ adding: share/man/man3/FcStrDowncase.3 (200 bytes security) (deflated 32%)
780
+ adding: share/man/man3/FcStrFree.3 (200 bytes security) (deflated 28%)
781
+ adding: share/man/man3/FcStrListCreate.3 (200 bytes security) (deflated 33%)
782
+ adding: share/man/man3/FcStrListDone.3 (200 bytes security) (deflated 30%)
783
+ adding: share/man/man3/FcStrListNext.3 (200 bytes security) (deflated 30%)
784
+ adding: share/man/man3/FcStrPlus.3 (200 bytes security) (deflated 34%)
785
+ adding: share/man/man3/FcStrSetAdd.3 (200 bytes security) (deflated 30%)
786
+ adding: share/man/man3/FcStrSetAddFilename.3 (200 bytes security) (deflated 36%)
787
+ adding: share/man/man3/FcStrSetCreate.3 (200 bytes security) (deflated 29%)
788
+ adding: share/man/man3/FcStrSetDel.3 (200 bytes security) (deflated 32%)
789
+ adding: share/man/man3/FcStrSetDestroy.3 (200 bytes security) (deflated 30%)
790
+ adding: share/man/man3/FcStrSetEqual.3 (200 bytes security) (deflated 34%)
791
+ adding: share/man/man3/FcStrSetMember.3 (200 bytes security) (deflated 31%)
792
+ adding: share/man/man3/FcStrStr.3 (200 bytes security) (deflated 35%)
793
+ adding: share/man/man3/FcStrStrIgnoreCase.3 (200 bytes security) (deflated 38%)
794
+ adding: share/man/man3/FcToLower.3 (200 bytes security) (deflated 32%)
795
+ adding: share/man/man3/FcUcs4ToUtf8.3 (200 bytes security) (deflated 30%)
796
+ adding: share/man/man3/FcUtf16Len.3 (200 bytes security) (deflated 41%)
797
+ adding: share/man/man3/FcUtf16ToUcs4.3 (200 bytes security) (deflated 37%)
798
+ adding: share/man/man3/FcUtf8Len.3 (200 bytes security) (deflated 39%)
799
+ adding: share/man/man3/FcUtf8ToUcs4.3 (200 bytes security) (deflated 35%)
800
+ adding: share/man/man3/FcValueDestroy.3 (200 bytes security) (deflated 33%)
801
+ adding: share/man/man3/FcValueEqual.3 (200 bytes security) (deflated 35%)
802
+ adding: share/man/man3/FcValuePrint.3 (200 bytes security) (deflated 32%)
803
+ adding: share/man/man3/FcValueSave.3 (200 bytes security) (deflated 31%)
804
+ adding: share/man/man5/fonts-conf.5 (200 bytes security) (deflated 66%)
805
+ adding: share/doc/fontconfig/fontconfig-devel/fcatomiccreate.html (200 bytes security) (deflated 63%)
806
+ adding: share/doc/fontconfig/fontconfig-devel/fcatomicdeletenew.html (200 bytes security) (deflated 64%)
807
+ adding: share/doc/fontconfig/fontconfig-devel/fcatomicdestroy.html (200 bytes security) (deflated 64%)
808
+ adding: share/doc/fontconfig/fontconfig-devel/fcatomiclock.html (200 bytes security) (deflated 64%)
809
+ adding: share/doc/fontconfig/fontconfig-devel/fcatomicnewfile.html (200 bytes security) (deflated 65%)
810
+ adding: share/doc/fontconfig/fontconfig-devel/fcatomicorigfile.html (200 bytes security) (deflated 65%)
811
+ adding: share/doc/fontconfig/fontconfig-devel/fcatomicreplaceorig.html (200 bytes security) (deflated 64%)
812
+ adding: share/doc/fontconfig/fontconfig-devel/fcatomicunlock.html (200 bytes security) (deflated 65%)
813
+ adding: share/doc/fontconfig/fontconfig-devel/fcblanksadd.html (200 bytes security) (deflated 64%)
814
+ adding: share/doc/fontconfig/fontconfig-devel/fcblankscreate.html (200 bytes security) (deflated 65%)
815
+ adding: share/doc/fontconfig/fontconfig-devel/fcblanksdestroy.html (200 bytes security) (deflated 64%)
816
+ adding: share/doc/fontconfig/fontconfig-devel/fcblanksismember.html (200 bytes security) (deflated 62%)
817
+ adding: share/doc/fontconfig/fontconfig-devel/fccachecopyset.html (200 bytes security) (deflated 64%)
818
+ adding: share/doc/fontconfig/fontconfig-devel/fccachedir.html (200 bytes security) (deflated 64%)
819
+ adding: share/doc/fontconfig/fontconfig-devel/fccachenumfont.html (200 bytes security) (deflated 63%)
820
+ adding: share/doc/fontconfig/fontconfig-devel/fccachenumsubdir.html (200 bytes security) (deflated 65%)
821
+ adding: share/doc/fontconfig/fontconfig-devel/fccachesubdir.html (200 bytes security) (deflated 65%)
822
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetaddchar.html (200 bytes security) (deflated 64%)
823
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetcopy.html (200 bytes security) (deflated 65%)
824
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetcount.html (200 bytes security) (deflated 65%)
825
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetcoverage.html (200 bytes security) (deflated 66%)
826
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetcreate.html (200 bytes security) (deflated 65%)
827
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetdestroy.html (200 bytes security) (deflated 65%)
828
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetequal.html (200 bytes security) (deflated 65%)
829
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetfirstpage.html (200 bytes security) (deflated 65%)
830
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsethaschar.html (200 bytes security) (deflated 66%)
831
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetintersect.html (200 bytes security) (deflated 66%)
832
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetintersectcount.html (200 bytes security) (deflated 66%)
833
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetissubset.html (200 bytes security) (deflated 66%)
834
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetmerge.html (200 bytes security) (deflated 66%)
835
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetnew.html (200 bytes security) (deflated 64%)
836
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetnextpage.html (200 bytes security) (deflated 65%)
837
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetsubtract.html (200 bytes security) (deflated 66%)
838
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetsubtractcount.html (200 bytes security) (deflated 66%)
839
+ adding: share/doc/fontconfig/fontconfig-devel/fccharsetunion.html (200 bytes security) (deflated 66%)
840
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigappfontadddir.html (200 bytes security) (deflated 64%)
841
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigappfontaddfile.html (200 bytes security) (deflated 64%)
842
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigappfontclear.html (200 bytes security) (deflated 65%)
843
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigbuildfonts.html (200 bytes security) (deflated 64%)
844
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigcreate.html (200 bytes security) (deflated 65%)
845
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigdestroy.html (200 bytes security) (deflated 64%)
846
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigenablehome.html (200 bytes security) (deflated 64%)
847
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigfilename.html (200 bytes security) (deflated 63%)
848
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiggetblanks.html (200 bytes security) (deflated 64%)
849
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiggetcache.html (200 bytes security) (deflated 64%)
850
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiggetcachedirs.html (200 bytes security) (deflated 65%)
851
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigdirs.html (200 bytes security) (deflated 65%)
852
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigfiles.html (200 bytes security) (deflated 66%)
853
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiggetcurrent.html (200 bytes security) (deflated 65%)
854
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiggetfontdirs.html (200 bytes security) (deflated 66%)
855
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiggetfonts.html (200 bytes security) (deflated 65%)
856
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiggetrescaninterval.html (200 bytes security) (deflated 65%)
857
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfighome.html (200 bytes security) (deflated 65%)
858
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigparseandload.html (200 bytes security) (deflated 61%)
859
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigreference.html (200 bytes security) (deflated 64%)
860
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigsetcurrent.html (200 bytes security) (deflated 65%)
861
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigsetrescaninterval.html (200 bytes security) (deflated 65%)
862
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigsubstitute.html (200 bytes security) (deflated 64%)
863
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfigsubstitutewithpat.html (200 bytes security) (deflated 65%)
864
+ adding: share/doc/fontconfig/fontconfig-devel/fcconfiguptodate.html (200 bytes security) (deflated 65%)
865
+ adding: share/doc/fontconfig/fontconfig-devel/fcdefaultsubstitute.html (200 bytes security) (deflated 64%)
866
+ adding: share/doc/fontconfig/fontconfig-devel/fcdircacheload.html (200 bytes security) (deflated 65%)
867
+ adding: share/doc/fontconfig/fontconfig-devel/fcdircacheloadfile.html (200 bytes security) (deflated 65%)
868
+ adding: share/doc/fontconfig/fontconfig-devel/fcdircacheread.html (200 bytes security) (deflated 64%)
869
+ adding: share/doc/fontconfig/fontconfig-devel/fcdircacheunlink.html (200 bytes security) (deflated 64%)
870
+ adding: share/doc/fontconfig/fontconfig-devel/fcdircacheunload.html (200 bytes security) (deflated 62%)
871
+ adding: share/doc/fontconfig/fontconfig-devel/fcdircachevalid.html (200 bytes security) (deflated 64%)
872
+ adding: share/doc/fontconfig/fontconfig-devel/fcdirsave.html (200 bytes security) (deflated 64%)
873
+ adding: share/doc/fontconfig/fontconfig-devel/fcdirscan.html (200 bytes security) (deflated 65%)
874
+ adding: share/doc/fontconfig/fontconfig-devel/fcfileisdir.html (200 bytes security) (deflated 64%)
875
+ adding: share/doc/fontconfig/fontconfig-devel/fcfilescan.html (200 bytes security) (deflated 63%)
876
+ adding: share/doc/fontconfig/fontconfig-devel/fcfini.html (200 bytes security) (deflated 63%)
877
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontlist.html (200 bytes security) (deflated 65%)
878
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontmatch.html (200 bytes security) (deflated 65%)
879
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontrenderprepare.html (200 bytes security) (deflated 66%)
880
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontsetadd.html (200 bytes security) (deflated 64%)
881
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontsetcreate.html (200 bytes security) (deflated 65%)
882
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontsetdestroy.html (200 bytes security) (deflated 65%)
883
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontsetlist.html (200 bytes security) (deflated 66%)
884
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontsetmatch.html (200 bytes security) (deflated 65%)
885
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontsetprint.html (200 bytes security) (deflated 63%)
886
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontsetsort.html (200 bytes security) (deflated 65%)
887
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontsetsortdestroy.html (200 bytes security) (deflated 64%)
888
+ adding: share/doc/fontconfig/fontconfig-devel/fcfontsort.html (200 bytes security) (deflated 64%)
889
+ adding: share/doc/fontconfig/fontconfig-devel/fcfreetypecharindex.html (200 bytes security) (deflated 63%)
890
+ adding: share/doc/fontconfig/fontconfig-devel/fcfreetypecharset.html (200 bytes security) (deflated 63%)
891
+ adding: share/doc/fontconfig/fontconfig-devel/fcfreetypecharsetandspacing.html (200 bytes security) (deflated 63%)
892
+ adding: share/doc/fontconfig/fontconfig-devel/fcfreetypequery.html (200 bytes security) (deflated 64%)
893
+ adding: share/doc/fontconfig/fontconfig-devel/fcfreetypequeryface.html (200 bytes security) (deflated 62%)
894
+ adding: share/doc/fontconfig/fontconfig-devel/fcgetlangs.html (200 bytes security) (deflated 65%)
895
+ adding: share/doc/fontconfig/fontconfig-devel/fcgetversion.html (200 bytes security) (deflated 65%)
896
+ adding: share/doc/fontconfig/fontconfig-devel/fcinit.html (200 bytes security) (deflated 63%)
897
+ adding: share/doc/fontconfig/fontconfig-devel/fcinitbringuptodate.html (200 bytes security) (deflated 62%)
898
+ adding: share/doc/fontconfig/fontconfig-devel/fcinitloadconfig.html (200 bytes security) (deflated 64%)
899
+ adding: share/doc/fontconfig/fontconfig-devel/fcinitloadconfigandfonts.html (200 bytes security) (deflated 64%)
900
+ adding: share/doc/fontconfig/fontconfig-devel/fcinitreinitialize.html (200 bytes security) (deflated 63%)
901
+ adding: share/doc/fontconfig/fontconfig-devel/fcislower.html (200 bytes security) (deflated 64%)
902
+ adding: share/doc/fontconfig/fontconfig-devel/fcisupper.html (200 bytes security) (deflated 64%)
903
+ adding: share/doc/fontconfig/fontconfig-devel/fclanggetcharset.html (200 bytes security) (deflated 63%)
904
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsetadd.html (200 bytes security) (deflated 65%)
905
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsetcompare.html (200 bytes security) (deflated 66%)
906
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsetcontains.html (200 bytes security) (deflated 67%)
907
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsetcopy.html (200 bytes security) (deflated 65%)
908
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsetcreate.html (200 bytes security) (deflated 65%)
909
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsetdestroy.html (200 bytes security) (deflated 65%)
910
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsetequal.html (200 bytes security) (deflated 65%)
911
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsetgetlangs.html (200 bytes security) (deflated 65%)
912
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsethash.html (200 bytes security) (deflated 64%)
913
+ adding: share/doc/fontconfig/fontconfig-devel/fclangsethaslang.html (200 bytes security) (deflated 67%)
914
+ adding: share/doc/fontconfig/fontconfig-devel/fcmatrixcopy.html (200 bytes security) (deflated 65%)
915
+ adding: share/doc/fontconfig/fontconfig-devel/fcmatrixequal.html (200 bytes security) (deflated 66%)
916
+ adding: share/doc/fontconfig/fontconfig-devel/fcmatrixinit.html (200 bytes security) (deflated 65%)
917
+ adding: share/doc/fontconfig/fontconfig-devel/fcmatrixmultiply.html (200 bytes security) (deflated 67%)
918
+ adding: share/doc/fontconfig/fontconfig-devel/fcmatrixrotate.html (200 bytes security) (deflated 67%)
919
+ adding: share/doc/fontconfig/fontconfig-devel/fcmatrixscale.html (200 bytes security) (deflated 67%)
920
+ adding: share/doc/fontconfig/fontconfig-devel/fcmatrixshear.html (200 bytes security) (deflated 65%)
921
+ adding: share/doc/fontconfig/fontconfig-devel/fcnameconstant.html (200 bytes security) (deflated 64%)
922
+ adding: share/doc/fontconfig/fontconfig-devel/fcnamegetconstant.html (200 bytes security) (deflated 65%)
923
+ adding: share/doc/fontconfig/fontconfig-devel/fcnamegetobjecttype.html (200 bytes security) (deflated 64%)
924
+ adding: share/doc/fontconfig/fontconfig-devel/fcnameparse.html (200 bytes security) (deflated 64%)
925
+ adding: share/doc/fontconfig/fontconfig-devel/fcnameregisterconstants.html (200 bytes security) (deflated 65%)
926
+ adding: share/doc/fontconfig/fontconfig-devel/fcnameregisterobjecttypes.html (200 bytes security) (deflated 65%)
927
+ adding: share/doc/fontconfig/fontconfig-devel/fcnameunparse.html (200 bytes security) (deflated 62%)
928
+ adding: share/doc/fontconfig/fontconfig-devel/fcnameunregisterconstants.html (200 bytes security) (deflated 66%)
929
+ adding: share/doc/fontconfig/fontconfig-devel/fcnameunregisterobjecttypes.html (200 bytes security) (deflated 66%)
930
+ adding: share/doc/fontconfig/fontconfig-devel/fcobjectsetadd.html (200 bytes security) (deflated 64%)
931
+ adding: share/doc/fontconfig/fontconfig-devel/fcobjectsetbuild.html (200 bytes security) (deflated 67%)
932
+ adding: share/doc/fontconfig/fontconfig-devel/fcobjectsetcreate.html (200 bytes security) (deflated 65%)
933
+ adding: share/doc/fontconfig/fontconfig-devel/fcobjectsetdestroy.html (200 bytes security) (deflated 65%)
934
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternadd-type.html (200 bytes security) (deflated 75%)
935
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternadd.html (200 bytes security) (deflated 63%)
936
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternaddweak.html (200 bytes security) (deflated 65%)
937
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternbuild.html (200 bytes security) (deflated 66%)
938
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatterncreate.html (200 bytes security) (deflated 65%)
939
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatterndel.html (200 bytes security) (deflated 64%)
940
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatterndestroy.html (200 bytes security) (deflated 65%)
941
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternduplicate.html (200 bytes security) (deflated 65%)
942
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternequal.html (200 bytes security) (deflated 66%)
943
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternequalsubset.html (200 bytes security) (deflated 66%)
944
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternfilter.html (200 bytes security) (deflated 66%)
945
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternformat.html (200 bytes security) (deflated 70%)
946
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternget-type.html (200 bytes security) (deflated 75%)
947
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternget.html (200 bytes security) (deflated 65%)
948
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternhash.html (200 bytes security) (deflated 64%)
949
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternprint.html (200 bytes security) (deflated 63%)
950
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternreference.html (200 bytes security) (deflated 65%)
951
+ adding: share/doc/fontconfig/fontconfig-devel/fcpatternremove.html (200 bytes security) (deflated 64%)
952
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrbasename.html (200 bytes security) (deflated 62%)
953
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrcmp.html (200 bytes security) (deflated 65%)
954
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrcmpignorecase.html (200 bytes security) (deflated 64%)
955
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrcopy.html (200 bytes security) (deflated 63%)
956
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrcopyfilename.html (200 bytes security) (deflated 63%)
957
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrdirname.html (200 bytes security) (deflated 63%)
958
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrdowncase.html (200 bytes security) (deflated 64%)
959
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrfree.html (200 bytes security) (deflated 63%)
960
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrlistcreate.html (200 bytes security) (deflated 65%)
961
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrlistdone.html (200 bytes security) (deflated 63%)
962
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrlistnext.html (200 bytes security) (deflated 65%)
963
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrplus.html (200 bytes security) (deflated 65%)
964
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrsetadd.html (200 bytes security) (deflated 66%)
965
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrsetaddfilename.html (200 bytes security) (deflated 64%)
966
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrsetcreate.html (200 bytes security) (deflated 65%)
967
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrsetdel.html (200 bytes security) (deflated 65%)
968
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrsetdestroy.html (200 bytes security) (deflated 65%)
969
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrsetequal.html (200 bytes security) (deflated 64%)
970
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrsetmember.html (200 bytes security) (deflated 65%)
971
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrstr.html (200 bytes security) (deflated 66%)
972
+ adding: share/doc/fontconfig/fontconfig-devel/fcstrstrignorecase.html (200 bytes security) (deflated 65%)
973
+ adding: share/doc/fontconfig/fontconfig-devel/fctolower.html (200 bytes security) (deflated 64%)
974
+ adding: share/doc/fontconfig/fontconfig-devel/fcucs4toutf8.html (200 bytes security) (deflated 64%)
975
+ adding: share/doc/fontconfig/fontconfig-devel/fcutf16len.html (200 bytes security) (deflated 65%)
976
+ adding: share/doc/fontconfig/fontconfig-devel/fcutf16toucs4.html (200 bytes security) (deflated 65%)
977
+ adding: share/doc/fontconfig/fontconfig-devel/fcutf8len.html (200 bytes security) (deflated 65%)
978
+ adding: share/doc/fontconfig/fontconfig-devel/fcutf8toucs4.html (200 bytes security) (deflated 65%)
979
+ adding: share/doc/fontconfig/fontconfig-devel/fcvaluedestroy.html (200 bytes security) (deflated 64%)
980
+ adding: share/doc/fontconfig/fontconfig-devel/fcvalueequal.html (200 bytes security) (deflated 62%)
981
+ adding: share/doc/fontconfig/fontconfig-devel/fcvalueprint.html (200 bytes security) (deflated 64%)
982
+ adding: share/doc/fontconfig/fontconfig-devel/fcvaluesave.html (200 bytes security) (deflated 64%)
983
+ adding: share/doc/fontconfig/fontconfig-devel/ln12.html (200 bytes security) (deflated 53%)
984
+ adding: share/doc/fontconfig/fontconfig-devel/t1.html (200 bytes security) (deflated 56%)
985
+ adding: share/doc/fontconfig/fontconfig-devel/x102.html (200 bytes security) (deflated 78%)
986
+ adding: share/doc/fontconfig/fontconfig-devel/x19.html (200 bytes security) (deflated 65%)
987
+ adding: share/doc/fontconfig/fontconfig-devel/x31.html (200 bytes security) (deflated 69%)
988
+ adding: share/doc/fontconfig/fontconfig-devel.pdf (200 bytes security) (deflated 65%)
989
+ adding: share/doc/fontconfig/fontconfig-devel.txt (200 bytes security) (deflated 79%)
990
+ adding: share/doc/fontconfig/fontconfig-user.html (200 bytes security) (deflated 72%)
991
+ adding: share/doc/fontconfig/fontconfig-user.pdf (200 bytes security) (deflated 25%)
992
+ adding: share/doc/fontconfig/fontconfig-user.txt (200 bytes security) (deflated 67%)
993
+ ++ mv /tmp/fontconfig-2.8.0.zip /tmp/fontconfig_2.8.0-2_win32.zip
994
+ ++ mv /tmp/fontconfig-dev-2.8.0.zip /tmp/fontconfig-dev_2.8.0-2_win32.zip
995
+ ++ cd /devel/target/e1fce2466937a6fa6e065a0c7d689ba4
996
+ ++ zip /tmp/fontconfig-dev_2.8.0-2_win32.zip bin/fc-cat.exe
997
+ adding: bin/fc-cat.exe (200 bytes security) (deflated 69%)
998
+ ++ zip /tmp/fontconfig-dev_2.8.0-2_win32.zip lib/fontconfig.lib
999
+ updating: lib/fontconfig.lib (200 bytes security) (deflated 86%)