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.
- data/Gemfile +14 -0
- data/NEWS +33 -0
- data/README.rdoc +115 -0
- data/Rakefile +69 -80
- data/ext/cairo/cairo.def +1 -1
- data/ext/cairo/depend +2 -0
- data/ext/cairo/extconf.rb +7 -5
- data/ext/cairo/rb_cairo.c +4 -1
- data/ext/cairo/rb_cairo.h +4 -0
- data/ext/cairo/rb_cairo_constants.c +6 -2
- data/ext/cairo/rb_cairo_context.c +3 -2
- data/ext/cairo/rb_cairo_device.c +8 -0
- data/ext/cairo/rb_cairo_font_face.c +1 -1
- data/ext/cairo/rb_cairo_surface.c +40 -0
- data/lib/1.8/cairo.so +0 -0
- data/lib/1.9/cairo.so +0 -0
- data/lib/cairo.rb +3 -3
- data/lib/cairo/color.rb +4 -4
- data/lib/cairo/context/path.rb +2 -1
- data/test/run-test.rb +1 -1
- data/test/test_context.rb +1 -1
- data/test/test_font_face.rb +1 -1
- data/test/test_recording_surface.rb +4 -1
- data/test/test_xml_surface.rb +2 -1
- data/vendor/local/bin/fc-cache.exe +0 -0
- data/vendor/local/bin/fc-cat.exe +0 -0
- data/vendor/local/bin/fc-list.exe +0 -0
- data/vendor/local/bin/freetype-config +160 -0
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
- data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
- data/vendor/local/bin/xmlwf.exe +0 -0
- data/vendor/local/etc/fonts/fonts.dtd +224 -0
- data/vendor/local/include/cairo/cairo-version.h +1 -1
- data/vendor/local/include/cairo/cairo.h +1 -1
- data/vendor/local/include/expat.h +1014 -0
- data/vendor/local/include/expat_external.h +115 -0
- data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
- data/vendor/local/include/fontconfig/fcprivate.h +123 -0
- data/vendor/local/include/fontconfig/fontconfig.h +963 -0
- data/vendor/local/include/freetype2/freetype/config/ftconfig.h +477 -0
- data/vendor/local/include/freetype2/freetype/config/ftheader.h +780 -0
- data/vendor/local/include/freetype2/freetype/config/ftmodule.h +20 -0
- data/vendor/local/include/freetype2/freetype/config/ftoption.h +733 -0
- data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +173 -0
- data/vendor/local/include/freetype2/freetype/freetype.h +3919 -0
- data/vendor/local/include/freetype2/freetype/ftadvanc.h +179 -0
- data/vendor/local/include/freetype2/freetype/ftbbox.h +94 -0
- data/vendor/local/include/freetype2/freetype/ftbdf.h +209 -0
- data/vendor/local/include/freetype2/freetype/ftbitmap.h +227 -0
- data/vendor/local/include/freetype2/freetype/ftcache.h +1125 -0
- data/vendor/local/include/freetype2/freetype/ftchapters.h +103 -0
- data/vendor/local/include/freetype2/freetype/ftcid.h +166 -0
- data/vendor/local/include/freetype2/freetype/fterrdef.h +244 -0
- data/vendor/local/include/freetype2/freetype/fterrors.h +206 -0
- data/vendor/local/include/freetype2/freetype/ftgasp.h +120 -0
- data/vendor/local/include/freetype2/freetype/ftglyph.h +613 -0
- data/vendor/local/include/freetype2/freetype/ftgxval.h +358 -0
- data/vendor/local/include/freetype2/freetype/ftgzip.h +102 -0
- data/vendor/local/include/freetype2/freetype/ftimage.h +1301 -0
- data/vendor/local/include/freetype2/freetype/ftincrem.h +353 -0
- data/vendor/local/include/freetype2/freetype/ftlcdfil.h +213 -0
- data/vendor/local/include/freetype2/freetype/ftlist.h +277 -0
- data/vendor/local/include/freetype2/freetype/ftlzw.h +99 -0
- data/vendor/local/include/freetype2/freetype/ftmac.h +274 -0
- data/vendor/local/include/freetype2/freetype/ftmm.h +378 -0
- data/vendor/local/include/freetype2/freetype/ftmodapi.h +483 -0
- data/vendor/local/include/freetype2/freetype/ftmoderr.h +155 -0
- data/vendor/local/include/freetype2/freetype/ftotval.h +203 -0
- data/vendor/local/include/freetype2/freetype/ftoutln.h +537 -0
- data/vendor/local/include/freetype2/freetype/ftpfr.h +172 -0
- data/vendor/local/include/freetype2/freetype/ftrender.h +230 -0
- data/vendor/local/include/freetype2/freetype/ftsizes.h +159 -0
- data/vendor/local/include/freetype2/freetype/ftsnames.h +200 -0
- data/vendor/local/include/freetype2/freetype/ftstroke.h +716 -0
- data/vendor/local/include/freetype2/freetype/ftsynth.h +80 -0
- data/vendor/local/include/freetype2/freetype/ftsystem.h +347 -0
- data/vendor/local/include/freetype2/freetype/fttrigon.h +350 -0
- data/vendor/local/include/freetype2/freetype/fttypes.h +588 -0
- data/vendor/local/include/freetype2/freetype/ftwinfnt.h +274 -0
- data/vendor/local/include/freetype2/freetype/ftxf86.h +83 -0
- data/vendor/local/include/freetype2/freetype/t1tables.h +504 -0
- data/vendor/local/include/freetype2/freetype/ttnameid.h +1247 -0
- data/vendor/local/include/freetype2/freetype/tttables.h +759 -0
- data/vendor/local/include/freetype2/freetype/tttags.h +107 -0
- data/vendor/local/include/freetype2/freetype/ttunpat.h +59 -0
- data/vendor/local/include/ft2build.h +61 -0
- data/vendor/local/include/libpng14/png.h +2701 -0
- data/vendor/local/include/libpng14/pngconf.h +1525 -0
- data/vendor/local/include/png.h +2701 -0
- data/vendor/local/include/pngconf.h +1525 -0
- data/vendor/local/include/zconf.h +461 -0
- data/vendor/local/include/zlib.h +1589 -0
- data/vendor/local/lib/cairo.lib +0 -0
- data/vendor/local/lib/expat.lib +0 -0
- data/vendor/local/lib/fontconfig.def +195 -0
- data/vendor/local/lib/fontconfig.lib +0 -0
- data/vendor/local/lib/freetype.def +186 -0
- data/vendor/local/lib/freetype.lib +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libexpat.def +73 -0
- data/vendor/local/lib/libexpat.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libpng.def +192 -0
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng14.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-png.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +2 -2
- data/vendor/local/lib/pkgconfig/cairo.pc +2 -2
- data/vendor/local/lib/pkgconfig/fontconfig.pc +11 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +12 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng14.pc +11 -0
- data/vendor/local/lib/zdll.lib +0 -0
- data/vendor/local/lib/zlib.def +67 -0
- data/vendor/local/man/man1/xmlwf.1 +251 -0
- data/vendor/local/manifest/{cairo-dev_1.10.0-1_win32.mft → cairo-dev_1.10.2-1_win32.mft} +6 -3
- data/vendor/local/manifest/cairo_1.10.2-1_win32.mft +7 -0
- data/vendor/local/manifest/expat-dev_2.0.1-1_win32.mft +10 -0
- data/vendor/local/manifest/fontconfig-dev_2.8.0-2_win32.mft +387 -0
- data/vendor/local/manifest/freetype-dev_2.4.2-1_win32.mft +56 -0
- data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +15 -0
- data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +8 -0
- data/vendor/local/share/aclocal/freetype2.m4 +194 -0
- data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING +0 -0
- data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING-LGPL-2.1 +0 -0
- data/vendor/local/share/doc/{cairo_1.10.0-1_win32 → cairo_1.10.2-1_win32}/COPYING-MPL-1.1 +0 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel.pdf +42484 -4
- data/vendor/local/share/doc/fontconfig/fontconfig-devel.txt +5046 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiccreate.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdeletenew.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicdestroy.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomiclock.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicnewfile.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicorigfile.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicreplaceorig.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcatomicunlock.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksadd.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblankscreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksdestroy.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcblanksismember.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachecopyset.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachedir.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumfont.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachenumsubdir.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccachesubdir.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetaddchar.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcopy.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcount.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcoverage.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetcreate.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetdestroy.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetequal.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetfirstpage.html +238 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsethaschar.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersect.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetintersectcount.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetissubset.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetmerge.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnew.html +208 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetnextpage.html +243 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtract.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetsubtractcount.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fccharsetunion.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontadddir.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontaddfile.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigappfontclear.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigbuildfonts.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigdestroy.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigenablehome.html +230 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigfilename.html +237 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetblanks.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcache.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcachedirs.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigdirs.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetconfigfiles.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetcurrent.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfontdirs.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetfonts.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiggetrescaninterval.html +230 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfighome.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigparseandload.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigreference.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetcurrent.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsetrescaninterval.html +229 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitute.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfigsubstitutewithpat.html +251 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcconfiguptodate.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdefaultsubstitute.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheload.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheloadfile.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheread.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunlink.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircacheunload.html +211 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdircachevalid.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirsave.html +245 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcdirscan.html +266 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfileisdir.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfilescan.html +276 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfini.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontlist.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontmatch.html +262 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontrenderprepare.html +259 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetadd.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetdestroy.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetlist.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetmatch.html +273 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetprint.html +224 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsort.html +303 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsetsortdestroy.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfontsort.html +289 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharindex.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharset.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypecharsetandspacing.html +241 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequery.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcfreetypequeryface.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetlangs.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcgetversion.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinit.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitbringuptodate.html +208 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfig.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitloadconfigandfonts.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcinitreinitialize.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcislower.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcisupper.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclanggetcharset.html +205 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetadd.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcompare.html +239 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcontains.html +259 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcopy.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetcreate.html +219 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetdestroy.html +220 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetequal.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsetgetlangs.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethash.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fclangsethaslang.html +255 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixcopy.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixequal.html +236 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixinit.html +225 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixmultiply.html +246 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixrotate.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixscale.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcmatrixshear.html +250 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameconstant.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetconstant.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnamegetobjecttype.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameparse.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterconstants.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameregisterobjecttypes.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunparse.html +218 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterconstants.html +228 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcnameunregisterobjecttypes.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetadd.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetbuild.html +262 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcobjectsetdestroy.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd-type.html +404 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternadd.html +240 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternaddweak.html +242 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternbuild.html +313 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterncreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndel.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatterndestroy.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternduplicate.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequal.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternequalsubset.html +242 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternfilter.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternformat.html +602 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget-type.html +435 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternget.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternhash.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternprint.html +218 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternreference.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcpatternremove.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrbasename.html +212 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmp.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcmpignorecase.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopy.html +226 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrcopyfilename.html +234 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdirname.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrdowncase.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrfree.html +217 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistcreate.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistdone.html +210 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrlistnext.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrplus.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetadd.html +231 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetaddfilename.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetcreate.html +216 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdel.html +237 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetdestroy.html +221 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetequal.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrsetmember.html +232 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstr.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcstrstrignorecase.html +244 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fctolower.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcucs4toutf8.html +233 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16len.html +278 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf16toucs4.html +265 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8len.html +261 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcutf8toucs4.html +249 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluedestroy.html +222 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueequal.html +212 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvalueprint.html +223 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/fcvaluesave.html +227 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/ln12.html +128 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/t1.html +133 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x102.html +1463 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x19.html +264 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-devel/x31.html +590 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.html +1352 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.pdf +0 -0
- data/vendor/local/share/doc/fontconfig/fontconfig-user.txt +644 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +11 -28
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +10 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +42 -99
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +22 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +1 -2
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +201 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +43 -113
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +1 -2
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +3 -4
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +21 -48
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +8 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +61 -148
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +19 -45
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +15 -39
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +3 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +6 -2
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +6 -2
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +9 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +6 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -1
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +8 -0
- data/vendor/local/share/man/man1/fc-cache.1 +70 -0
- data/vendor/local/share/man/man1/fc-cat.1 +44 -0
- data/vendor/local/share/man/man1/fc-list.1 +72 -0
- data/vendor/local/share/man/man1/fc-match.1 +73 -0
- data/vendor/local/share/man/man1/fc-query.1 +57 -0
- data/vendor/local/share/man/man1/fc-scan.1 +52 -0
- data/vendor/local/share/man/man3/FcAtomicCreate.3 +19 -0
- data/vendor/local/share/man/man3/FcAtomicDeleteNew.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicLock.3 +18 -0
- data/vendor/local/share/man/man3/FcAtomicNewFile.3 +17 -0
- data/vendor/local/share/man/man3/FcAtomicOrigFile.3 +16 -0
- data/vendor/local/share/man/man3/FcAtomicReplaceOrig.3 +18 -0
- data/vendor/local/share/man/man3/FcAtomicUnlock.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksAdd.3 +18 -0
- data/vendor/local/share/man/man3/FcBlanksCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcBlanksIsMember.3 +18 -0
- data/vendor/local/share/man/man3/FcCacheCopySet.3 +18 -0
- data/vendor/local/share/man/man3/FcCacheDir.3 +16 -0
- data/vendor/local/share/man/man3/FcCacheNumFont.3 +17 -0
- data/vendor/local/share/man/man3/FcCacheNumSubdir.3 +16 -0
- data/vendor/local/share/man/man3/FcCacheSubdir.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetAddChar.3 +19 -0
- data/vendor/local/share/man/man3/FcCharSetCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetCount.3 +16 -0
- data/vendor/local/share/man/man3/FcCharSetCoverage.3 +23 -0
- data/vendor/local/share/man/man3/FcCharSetCreate.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetDestroy.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetEqual.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetFirstPage.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetHasChar.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetIntersect.3 +18 -0
- data/vendor/local/share/man/man3/FcCharSetIntersectCount.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetIsSubset.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetMerge.3 +23 -0
- data/vendor/local/share/man/man3/FcCharSetNew.3 +16 -0
- data/vendor/local/share/man/man3/FcCharSetNextPage.3 +20 -0
- data/vendor/local/share/man/man3/FcCharSetSubtract.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetSubtractCount.3 +17 -0
- data/vendor/local/share/man/man3/FcCharSetUnion.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigAppFontAddDir.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigAppFontAddFile.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigAppFontClear.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigBuildFonts.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcConfigDestroy.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigEnableHome.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigFilename.3 +26 -0
- data/vendor/local/share/man/man3/FcConfigGetBlanks.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigGetCache.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigGetCacheDirs.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigGetConfigDirs.3 +18 -0
- data/vendor/local/share/man/man3/FcConfigGetConfigFiles.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigGetCurrent.3 +16 -0
- data/vendor/local/share/man/man3/FcConfigGetFontDirs.3 +19 -0
- data/vendor/local/share/man/man3/FcConfigGetFonts.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigGetRescanInterval.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigHome.3 +18 -0
- data/vendor/local/share/man/man3/FcConfigParseAndLoad.3 +23 -0
- data/vendor/local/share/man/man3/FcConfigReference.3 +21 -0
- data/vendor/local/share/man/man3/FcConfigSetCurrent.3 +17 -0
- data/vendor/local/share/man/man3/FcConfigSetRescanInterval.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigSubstitute.3 +20 -0
- data/vendor/local/share/man/man3/FcConfigSubstituteWithPat.3 +24 -0
- data/vendor/local/share/man/man3/FcConfigUptoDate.3 +18 -0
- data/vendor/local/share/man/man3/FcDefaultSubstitute.3 +27 -0
- data/vendor/local/share/man/man3/FcDirCacheLoad.3 +21 -0
- data/vendor/local/share/man/man3/FcDirCacheLoadFile.3 +19 -0
- data/vendor/local/share/man/man3/FcDirCacheRead.3 +21 -0
- data/vendor/local/share/man/man3/FcDirCacheUnlink.3 +20 -0
- data/vendor/local/share/man/man3/FcDirCacheUnload.3 +17 -0
- data/vendor/local/share/man/man3/FcDirCacheValid.3 +17 -0
- data/vendor/local/share/man/man3/FcDirSave.3 +22 -0
- data/vendor/local/share/man/man3/FcDirScan.3 +26 -0
- data/vendor/local/share/man/man3/FcFileIsDir.3 +17 -0
- data/vendor/local/share/man/man3/FcFileScan.3 +31 -0
- data/vendor/local/share/man/man3/FcFini.3 +19 -0
- data/vendor/local/share/man/man3/FcFontList.3 +21 -0
- data/vendor/local/share/man/man3/FcFontMatch.3 +25 -0
- data/vendor/local/share/man/man3/FcFontRenderPrepare.3 +21 -0
- data/vendor/local/share/man/man3/FcFontSetAdd.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcFontSetDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcFontSetList.3 +25 -0
- data/vendor/local/share/man/man3/FcFontSetMatch.3 +28 -0
- data/vendor/local/share/man/man3/FcFontSetPrint.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSetSort.3 +39 -0
- data/vendor/local/share/man/man3/FcFontSetSortDestroy.3 +19 -0
- data/vendor/local/share/man/man3/FcFontSort.3 +33 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharIndex.3 +22 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharSet.3 +21 -0
- data/vendor/local/share/man/man3/FcFreeTypeCharSetAndSpacing.3 +28 -0
- data/vendor/local/share/man/man3/FcFreeTypeQuery.3 +21 -0
- data/vendor/local/share/man/man3/FcFreeTypeQueryFace.3 +21 -0
- data/vendor/local/share/man/man3/FcGetLangs.3 +16 -0
- data/vendor/local/share/man/man3/FcGetVersion.3 +16 -0
- data/vendor/local/share/man/man3/FcInit.3 +19 -0
- data/vendor/local/share/man/man3/FcInitBringUptoDate.3 +19 -0
- data/vendor/local/share/man/man3/FcInitLoadConfig.3 +17 -0
- data/vendor/local/share/man/man3/FcInitLoadConfigAndFonts.3 +17 -0
- data/vendor/local/share/man/man3/FcInitReinitialize.3 +19 -0
- data/vendor/local/share/man/man3/FcIsLower.3 +17 -0
- data/vendor/local/share/man/man3/FcIsUpper.3 +17 -0
- data/vendor/local/share/man/man3/FcLangGetCharSet.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetAdd.3 +20 -0
- data/vendor/local/share/man/man3/FcLangSetCompare.3 +22 -0
- data/vendor/local/share/man/man3/FcLangSetContains.3 +22 -0
- data/vendor/local/share/man/man3/FcLangSetCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcLangSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcLangSetEqual.3 +18 -0
- data/vendor/local/share/man/man3/FcLangSetGetLangs.3 +16 -0
- data/vendor/local/share/man/man3/FcLangSetHasLang.3 +23 -0
- data/vendor/local/share/man/man3/FcLangSetHash.3 +20 -0
- data/vendor/local/share/man/man3/FcMatrixCopy.3 +17 -0
- data/vendor/local/share/man/man3/FcMatrixEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcMatrixInit.3 +17 -0
- data/vendor/local/share/man/man3/FcMatrixMultiply.3 +20 -0
- data/vendor/local/share/man/man3/FcMatrixRotate.3 +27 -0
- data/vendor/local/share/man/man3/FcMatrixScale.3 +27 -0
- data/vendor/local/share/man/man3/FcMatrixShear.3 +27 -0
- data/vendor/local/share/man/man3/FcNameConstant.3 +18 -0
- data/vendor/local/share/man/man3/FcNameGetConstant.3 +16 -0
- data/vendor/local/share/man/man3/FcNameGetObjectType.3 +16 -0
- data/vendor/local/share/man/man3/FcNameParse.3 +16 -0
- data/vendor/local/share/man/man3/FcNameRegisterConstants.3 +19 -0
- data/vendor/local/share/man/man3/FcNameRegisterObjectTypes.3 +19 -0
- data/vendor/local/share/man/man3/FcNameUnparse.3 +18 -0
- data/vendor/local/share/man/man3/FcNameUnregisterConstants.3 +19 -0
- data/vendor/local/share/man/man3/FcNameUnregisterObjectTypes.3 +17 -0
- data/vendor/local/share/man/man3/FcObjectSetAdd.3 +18 -0
- data/vendor/local/share/man/man3/FcObjectSetBuild.3 +26 -0
- data/vendor/local/share/man/man3/FcObjectSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcObjectSetDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcPatternAdd-Type.3 +49 -0
- data/vendor/local/share/man/man3/FcPatternAdd.3 +23 -0
- data/vendor/local/share/man/man3/FcPatternAddWeak.3 +20 -0
- data/vendor/local/share/man/man3/FcPatternBuild.3 +50 -0
- data/vendor/local/share/man/man3/FcPatternCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcPatternDel.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternDuplicate.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternEqual.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternEqualSubset.3 +19 -0
- data/vendor/local/share/man/man3/FcPatternFilter.3 +20 -0
- data/vendor/local/share/man/man3/FcPatternFormat.3 +205 -0
- data/vendor/local/share/man/man3/FcPatternGet-Type.3 +56 -0
- data/vendor/local/share/man/man3/FcPatternGet.3 +22 -0
- data/vendor/local/share/man/man3/FcPatternHash.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternPrint.3 +18 -0
- data/vendor/local/share/man/man3/FcPatternReference.3 +17 -0
- data/vendor/local/share/man/man3/FcPatternRemove.3 +19 -0
- data/vendor/local/share/man/man3/FcStrBasename.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCmp.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCmpIgnoreCase.3 +19 -0
- data/vendor/local/share/man/man3/FcStrCopy.3 +18 -0
- data/vendor/local/share/man/man3/FcStrCopyFilename.3 +23 -0
- data/vendor/local/share/man/man3/FcStrDirname.3 +18 -0
- data/vendor/local/share/man/man3/FcStrDowncase.3 +17 -0
- data/vendor/local/share/man/man3/FcStrFree.3 +17 -0
- data/vendor/local/share/man/man3/FcStrListCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcStrListDone.3 +16 -0
- data/vendor/local/share/man/man3/FcStrListNext.3 +16 -0
- data/vendor/local/share/man/man3/FcStrPlus.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetAdd.3 +17 -0
- data/vendor/local/share/man/man3/FcStrSetAddFilename.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetCreate.3 +16 -0
- data/vendor/local/share/man/man3/FcStrSetDel.3 +18 -0
- data/vendor/local/share/man/man3/FcStrSetDestroy.3 +16 -0
- data/vendor/local/share/man/man3/FcStrSetEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcStrSetMember.3 +18 -0
- data/vendor/local/share/man/man3/FcStrStr.3 +20 -0
- data/vendor/local/share/man/man3/FcStrStrIgnoreCase.3 +20 -0
- data/vendor/local/share/man/man3/FcToLower.3 +17 -0
- data/vendor/local/share/man/man3/FcUcs4ToUtf8.3 +19 -0
- data/vendor/local/share/man/man3/FcUtf16Len.3 +27 -0
- data/vendor/local/share/man/man3/FcUtf16ToUcs4.3 +23 -0
- data/vendor/local/share/man/man3/FcUtf8Len.3 +24 -0
- data/vendor/local/share/man/man3/FcUtf8ToUcs4.3 +21 -0
- data/vendor/local/share/man/man3/FcValueDestroy.3 +17 -0
- data/vendor/local/share/man/man3/FcValueEqual.3 +19 -0
- data/vendor/local/share/man/man3/FcValuePrint.3 +18 -0
- data/vendor/local/share/man/man3/FcValueSave.3 +17 -0
- data/vendor/local/share/man/man3/libpng.3 +4455 -0
- data/vendor/local/share/man/man3/libpngpf.3 +808 -0
- data/vendor/local/share/man/man5/fonts-conf.5 +644 -0
- data/vendor/local/share/man/man5/png.5 +74 -0
- data/vendor/local/src/tml/packaging/{cairo_1.10.0-1_win32.log → cairo_1.10.2-1_win32.log} +242 -235
- data/vendor/local/src/tml/packaging/{cairo_1.10.0-1_win32.sh → cairo_1.10.2-1_win32.sh} +11 -3
- data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.log +188 -0
- data/vendor/local/src/tml/packaging/expat_2.0.1-1_win32.sh +68 -0
- data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.log +999 -0
- data/vendor/local/src/tml/packaging/fontconfig_2.8.0-2_win32.sh +79 -0
- data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.log +364 -0
- data/vendor/local/src/tml/packaging/freetype_2.4.2-1_win32.sh +93 -0
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +272 -0
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +71 -0
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +42 -0
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +189 -0
- metadata +586 -122
- data/extconf.rb +0 -45
- data/misc/update-colors.rb +0 -143
- data/samples/agg/README +0 -4
- data/tmp/i386-mingw32/cairo/1.8.7/fake.rb +0 -6
- data/tmp/i386-mingw32/cairo/1.8.7/mkmf.rb +0 -1836
- data/tmp/i386-mingw32/cairo/1.8.7/rbconfig.rb +0 -183
- data/tmp/i386-mingw32/cairo/1.9.2/fake.rb +0 -6
- data/tmp/i386-mingw32/cairo/1.9.2/mkmf.rb +0 -2079
- data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +0 -226
- data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +0 -5
@@ -0,0 +1,20 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcPatternFilter" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcPatternFilter \- Filter the objects of pattern
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
FcPattern * FcPatternFilter(FcPattern *\fIp\fB);
|
10
|
+
(const FcObjectSet *\fI\fB);
|
11
|
+
\fR.fi
|
12
|
+
.SH "DESCRIPTION"
|
13
|
+
.PP
|
14
|
+
Returns a new pattern that only has those objects from
|
15
|
+
\fIp\fR that are in \fIos\fR\&.
|
16
|
+
If \fIos\fR is NULL, a duplicate of
|
17
|
+
\fIp\fR is returned.
|
18
|
+
.SH "VERSION"
|
19
|
+
.PP
|
20
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,205 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcPatternFormat" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcPatternFormat \- Format a pattern into a string according to a format specifier
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
FcChar8 * FcPatternFormat(FcPattern *\fIpat\fB);
|
10
|
+
(const FcChar8 *\fIformat\fB);
|
11
|
+
\fR.fi
|
12
|
+
.SH "DESCRIPTION"
|
13
|
+
.PP
|
14
|
+
Converts given pattern \fIpat\fR into text described by
|
15
|
+
the format specifier \fIformat\fR\&.
|
16
|
+
The return value refers to newly allocated memory which should be freed by the
|
17
|
+
caller using free(), or NULL if \fIformat\fR is invalid.
|
18
|
+
.PP
|
19
|
+
The format is loosely modelled after printf-style format string.
|
20
|
+
The format string is composed of zero or more directives: ordinary
|
21
|
+
characters (not "%"), which are copied unchanged to the output stream;
|
22
|
+
and tags which are interpreted to construct text from the pattern in a
|
23
|
+
variety of ways (explained below).
|
24
|
+
Special characters can be escaped
|
25
|
+
using backslash. C-string style special characters like \\n and \\r are
|
26
|
+
also supported (this is useful when the format string is not a C string
|
27
|
+
literal).
|
28
|
+
It is advisable to always escape curly braces that
|
29
|
+
are meant to be copied to the output as ordinary characters.
|
30
|
+
.PP
|
31
|
+
Each tags is introduced by the character "%",
|
32
|
+
followed by an optional minimum field width,
|
33
|
+
followed by tag contents in curly braces ({}).
|
34
|
+
If the minimum field width value is provided the tag
|
35
|
+
will be expanded and the result padded to achieve the minimum width.
|
36
|
+
If the minimum field width is positive, the padding will right-align
|
37
|
+
the text. Negative field width will left-align.
|
38
|
+
The rest of this section describes various supported tag contents
|
39
|
+
and their expansion.
|
40
|
+
.PP
|
41
|
+
A \fIsimple\fR tag
|
42
|
+
is one where the content is an identifier. When simple
|
43
|
+
tags are expanded, the named identifier will be looked up in
|
44
|
+
\fIpattern\fR and the resulting list of values returned,
|
45
|
+
joined together using comma. For example, to print the family name and style the
|
46
|
+
pattern, use the format "%{family} %{style}\\n". To extend the family column
|
47
|
+
to forty characters use "%-40{family}%{style}\\n".
|
48
|
+
.PP
|
49
|
+
Simple tags expand to list of all values for an element. To only choose
|
50
|
+
one of the values, one can index using the syntax "%{elt[idx]}". For example,
|
51
|
+
to get the first family name only, use "%{family[0]}".
|
52
|
+
.PP
|
53
|
+
If a simple tag ends with "=" and the element is found in the pattern, the
|
54
|
+
name of the element followed by "=" will be output before the list of values.
|
55
|
+
For example, "%{weight=}" may expand to the string "weight=80". Or to the empty
|
56
|
+
string if \fIpattern\fR does not have weight set.
|
57
|
+
.PP
|
58
|
+
If a simple tag starts with ":" and the element is found in the pattern, ":"
|
59
|
+
will be printed first. For example, combining this with the =, the format
|
60
|
+
"%{:weight=}" may expand to ":weight=80" or to the empty string
|
61
|
+
if \fIpattern\fR does not have weight set.
|
62
|
+
.PP
|
63
|
+
If a simple tag contains the string ":-", the rest of the the tag contents
|
64
|
+
will be used as a default string. The default string is output if the element
|
65
|
+
is not found in the pattern. For example, the format
|
66
|
+
"%{:weight=:-123}" may expand to ":weight=80" or to the string
|
67
|
+
":weight=123" if \fIpattern\fR does not have weight set.
|
68
|
+
.PP
|
69
|
+
A \fIcount\fR tag
|
70
|
+
is one that starts with the character "#" followed by an element
|
71
|
+
name, and expands to the number of values for the element in the pattern.
|
72
|
+
For example, "%{#family}" expands to the number of family names
|
73
|
+
\fIpattern\fR has set, which may be zero.
|
74
|
+
.PP
|
75
|
+
A \fIsub-expression\fR tag
|
76
|
+
is one that expands a sub-expression. The tag contents
|
77
|
+
are the sub-expression to expand placed inside another set of curly braces.
|
78
|
+
Sub-expression tags are useful for aligning an entire sub-expression, or to
|
79
|
+
apply converters (explained later) on an entire sub-expression.
|
80
|
+
For example, the format "%40{{%{family} %{style}}}" expands the sub-expression
|
81
|
+
to construct the family name followed by the style, then takes the entire
|
82
|
+
string and pads it on the left to be at least forty characters.
|
83
|
+
.PP
|
84
|
+
A \fIfilter-out\fR tag
|
85
|
+
is one starting with the character "-" followed by a
|
86
|
+
comma-separated list of element names, followed by a sub-expression enclosed
|
87
|
+
in curly braces. The sub-expression will be expanded but with a pattern that
|
88
|
+
has the listed elements removed from it.
|
89
|
+
For example, the format "%{-size,pixelsize{sub-expr}}" will expand "sub-expr"
|
90
|
+
with \fIpattern\fR sans the size and pixelsize elements.
|
91
|
+
.PP
|
92
|
+
A \fIfilter-in\fR tag
|
93
|
+
is one starting with the character "+" followed by a
|
94
|
+
comma-separated list of element names, followed by a sub-expression enclosed
|
95
|
+
in curly braces. The sub-expression will be expanded but with a pattern that
|
96
|
+
only has the listed elements from the surrounding pattern.
|
97
|
+
For example, the format "%{+family,familylang{sub-expr}}" will expand "sub-expr"
|
98
|
+
with a sub-pattern consisting only the family and family lang elements of
|
99
|
+
\fIpattern\fR\&.
|
100
|
+
.PP
|
101
|
+
A \fIconditional\fR tag
|
102
|
+
is one starting with the character "?" followed by a
|
103
|
+
comma-separated list of element conditions, followed by two sub-expression
|
104
|
+
enclosed in curly braces. An element condition can be an element name,
|
105
|
+
in which case it tests whether the element is defined in pattern, or
|
106
|
+
the character "!" followed by an element name, in which case the test
|
107
|
+
is negated. The conditional passes if all the element conditions pass.
|
108
|
+
The tag expands the first sub-expression if the conditional passes, and
|
109
|
+
expands the second sub-expression otherwise.
|
110
|
+
For example, the format "%{?size,dpi,!pixelsize{pass}{fail}}" will expand
|
111
|
+
to "pass" if \fIpattern\fR has size and dpi elements but
|
112
|
+
no pixelsize element, and to "fail" otherwise.
|
113
|
+
.PP
|
114
|
+
An \fIenumerate\fR tag
|
115
|
+
is one starting with the string "[]" followed by a
|
116
|
+
comma-separated list of element names, followed by a sub-expression enclosed
|
117
|
+
in curly braces. The list of values for the named elements are walked in
|
118
|
+
parallel and the sub-expression expanded each time with a pattern just having
|
119
|
+
a single value for those elements, starting from the first value and
|
120
|
+
continuing as long as any of those elements has a value.
|
121
|
+
For example, the format "%{[]family,familylang{%{family} (%{familylang})\\n}}"
|
122
|
+
will expand the pattern "%{family} (%{familylang})\\n" with a pattern
|
123
|
+
having only the first value of the family and familylang elemtns, then expands
|
124
|
+
it with the second values, then the third, etc.
|
125
|
+
.PP
|
126
|
+
As a special case, if an enumerate tag has only one element, and that element
|
127
|
+
has only one value in the pattern, and that value is of type FcLangSet, the
|
128
|
+
individual languages in the language set are enumerated.
|
129
|
+
.PP
|
130
|
+
A \fIbuiltin\fR tag
|
131
|
+
is one starting with the character "=" followed by a builtin
|
132
|
+
name. The following builtins are defined:
|
133
|
+
.TP
|
134
|
+
\fBunparse\fR
|
135
|
+
Expands to the result of calling FcNameUnparse() on the pattern.
|
136
|
+
.TP
|
137
|
+
\fBfcmatch\fR
|
138
|
+
Expands to the output of the default output format of the fc-match
|
139
|
+
command on the pattern, without the final newline.
|
140
|
+
.TP
|
141
|
+
\fBfclist\fR
|
142
|
+
Expands to the output of the default output format of the fc-list
|
143
|
+
command on the pattern, without the final newline.
|
144
|
+
.TP
|
145
|
+
\fBpkgkit\fR
|
146
|
+
Expands to the list of PackageKit font() tags for the pattern.
|
147
|
+
Currently this includes tags for each family name, and each language
|
148
|
+
from the pattern, enumerated and sanitized into a set of tags terminated
|
149
|
+
by newline. Package management systems can use these tags to tag their
|
150
|
+
packages accordingly.
|
151
|
+
.PP
|
152
|
+
For example, the format "%{+family,style{%{=unparse}}}\\n" will expand
|
153
|
+
to an unparsed name containing only the family and style element values
|
154
|
+
from \fIpattern\fR\&.
|
155
|
+
.PP
|
156
|
+
The contents of any tag can be followed by a set of zero or more
|
157
|
+
\fIconverter\fRs. A converter is specified by the
|
158
|
+
character "|" followed by the converter name and arguments. The
|
159
|
+
following converters are defined:
|
160
|
+
.TP
|
161
|
+
\fBbasename\fR
|
162
|
+
Replaces text with the results of calling FcStrBasename() on it.
|
163
|
+
.TP
|
164
|
+
\fBdirname\fR
|
165
|
+
Replaces text with the results of calling FcStrDirname() on it.
|
166
|
+
.TP
|
167
|
+
\fBdowncase\fR
|
168
|
+
Replaces text with the results of calling FcStrDowncase() on it.
|
169
|
+
.TP
|
170
|
+
\fBshescape\fR
|
171
|
+
Escapes text for one level of shell expansion.
|
172
|
+
(Escapes single-quotes, also encloses text in single-quotes.)
|
173
|
+
.TP
|
174
|
+
\fBcescape\fR
|
175
|
+
Escapes text such that it can be used as part of a C string literal.
|
176
|
+
(Escapes backslash and double-quotes.)
|
177
|
+
.TP
|
178
|
+
\fBxmlescape\fR
|
179
|
+
Escapes text such that it can be used in XML and HTML.
|
180
|
+
(Escapes less-than, greater-than, and ampersand.)
|
181
|
+
.TP
|
182
|
+
\fBdelete(\fIchars\fB)\fR
|
183
|
+
Deletes all occurrences of each of the characters in \fIchars\fR
|
184
|
+
from the text.
|
185
|
+
FIXME: This converter is not UTF-8 aware yet.
|
186
|
+
.TP
|
187
|
+
\fBescape(\fIchars\fB)\fR
|
188
|
+
Escapes all occurrences of each of the characters in \fIchars\fR
|
189
|
+
by prepending it by the first character in \fIchars\fR\&.
|
190
|
+
FIXME: This converter is not UTF-8 aware yet.
|
191
|
+
.TP
|
192
|
+
\fBtranslate(\fIfrom\fB,\fIto\fB)\fR
|
193
|
+
Translates all occurrences of each of the characters in \fIfrom\fR
|
194
|
+
by replacing them with their corresponding character in \fIto\fR\&.
|
195
|
+
If \fIto\fR has fewer characters than
|
196
|
+
\fIfrom\fR, it will be extended by repeating its last
|
197
|
+
character.
|
198
|
+
FIXME: This converter is not UTF-8 aware yet.
|
199
|
+
.PP
|
200
|
+
For example, the format "%{family|downcase|delete( )}\\n" will expand
|
201
|
+
to the values of the family element in \fIpattern\fR,
|
202
|
+
lower-cased and with spaces removed.
|
203
|
+
.SH "VERSION"
|
204
|
+
.PP
|
205
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,56 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcPatternGet-Type" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcPatternGetInteger, FcPatternGetDouble, FcPatternGetString, FcPatternGetMatrix, FcPatternGetCharSet, FcPatternGetBool, FcPatternGetFTFace, FcPatternGetLangSet \- Return a typed value from a pattern
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
FcResult FcPatternGetInteger(FcPattern *\fIp\fB);
|
10
|
+
(const char *\fIobject\fB);
|
11
|
+
(int \fIn\fB);
|
12
|
+
(int *\fIi\fB);
|
13
|
+
.sp
|
14
|
+
FcResult FcPatternGetDouble(FcPattern *\fIp\fB);
|
15
|
+
(const char *\fIobject\fB);
|
16
|
+
(int \fIn\fB);
|
17
|
+
(double *\fId\fB);
|
18
|
+
.sp
|
19
|
+
FcResult FcPatternGetString(FcPattern *\fIp\fB);
|
20
|
+
(const char *\fIobject\fB);
|
21
|
+
(int \fIn\fB);
|
22
|
+
(FcChar8 **\fIs\fB);
|
23
|
+
.sp
|
24
|
+
FcResult FcPatternGetMatrix(FcPattern *\fIp\fB);
|
25
|
+
(const char *\fIobject\fB);
|
26
|
+
(int \fIn\fB);
|
27
|
+
(FcMatrix **\fIs\fB);
|
28
|
+
.sp
|
29
|
+
FcResult FcPatternGetCharSet(FcPattern *\fIp\fB);
|
30
|
+
(const char *\fIobject\fB);
|
31
|
+
(int \fIn\fB);
|
32
|
+
(FcCharSet **\fIc\fB);
|
33
|
+
.sp
|
34
|
+
FcResult FcPatternGetBool(FcPattern *\fIp\fB);
|
35
|
+
(const char *\fIobject\fB);
|
36
|
+
(int \fIn\fB);
|
37
|
+
(FcBool *\fIb\fB);
|
38
|
+
.sp
|
39
|
+
FcResult FcPatternGetFTFace(FcPattern *\fIp\fB);
|
40
|
+
(const char *\fIobject\fB);
|
41
|
+
(int \fIn\fB);
|
42
|
+
.sp
|
43
|
+
FcResult FcPatternGetLangSet(FcPattern *\fIp\fB);
|
44
|
+
(const char *\fIobject\fB);
|
45
|
+
(FT_Face *\fIf\fB);
|
46
|
+
\fR.fi
|
47
|
+
.SH "DESCRIPTION"
|
48
|
+
.PP
|
49
|
+
These are convenience functions that call FcPatternGet and verify that the
|
50
|
+
returned data is of the expected type. They return FcResultTypeMismatch if
|
51
|
+
this is not the case. Note that these (like FcPatternGet) do not make a
|
52
|
+
copy of any data structure referenced by the return value. Use these
|
53
|
+
in preference to FcPatternGet to provide compile-time typechecking.
|
54
|
+
.SH "VERSION"
|
55
|
+
.PP
|
56
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,22 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcPatternGet" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcPatternGet \- Return a value from a pattern
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
FcResult FcPatternGet(FcPattern *\fIp\fB);
|
10
|
+
(const char *\fIobject\fB);
|
11
|
+
(int \fIid\fB);
|
12
|
+
(FcValue *\fIv\fB);
|
13
|
+
\fR.fi
|
14
|
+
.SH "DESCRIPTION"
|
15
|
+
.PP
|
16
|
+
Returns in \fIv\fR the \fIid\fR\&'th value
|
17
|
+
associated with the property \fIobject\fR\&.
|
18
|
+
The value returned is not a copy, but rather refers to the data stored
|
19
|
+
within the pattern directly. Applications must not free this value.
|
20
|
+
.SH "VERSION"
|
21
|
+
.PP
|
22
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,17 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcPatternHash" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcPatternHash \- Compute a pattern hash value
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
FcChar32 FcPatternHash(const FcPattern *\fIp\fB);
|
10
|
+
\fR.fi
|
11
|
+
.SH "DESCRIPTION"
|
12
|
+
.PP
|
13
|
+
Returns a 32-bit number which is the same for any two patterns which are
|
14
|
+
equal.
|
15
|
+
.SH "VERSION"
|
16
|
+
.PP
|
17
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,18 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcPatternPrint" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcPatternPrint \- Print a pattern for debugging
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
void FcPatternPrint(const FcPattern *\fIp\fB);
|
10
|
+
\fR.fi
|
11
|
+
.SH "DESCRIPTION"
|
12
|
+
.PP
|
13
|
+
Prints an easily readable version of the pattern to stdout. There is
|
14
|
+
no provision for reparsing data in this format, it's just for diagnostics
|
15
|
+
and debugging.
|
16
|
+
.SH "VERSION"
|
17
|
+
.PP
|
18
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,17 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcPatternReference" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcPatternReference \- Increment pattern reference count
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
void FcPatternReference(FcPattern *\fIp\fB);
|
10
|
+
\fR.fi
|
11
|
+
.SH "DESCRIPTION"
|
12
|
+
.PP
|
13
|
+
Add another reference to \fIp\fR\&. Patterns are freed only
|
14
|
+
when the reference count reaches zero.
|
15
|
+
.SH "VERSION"
|
16
|
+
.PP
|
17
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,19 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcPatternRemove" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcPatternRemove \- Remove one object of the specified type from the pattern
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
FcBool FcPatternRemove(FcPattern *\fIp\fB);
|
10
|
+
(const char *\fIobject\fB);
|
11
|
+
(int \fIid\fB);
|
12
|
+
\fR.fi
|
13
|
+
.SH "DESCRIPTION"
|
14
|
+
.PP
|
15
|
+
Removes the value associated with the property `object' at position `id', returning
|
16
|
+
whether the property existed and had a value at that position or not.
|
17
|
+
.SH "VERSION"
|
18
|
+
.PP
|
19
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,18 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcStrBasename" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcStrBasename \- last component of filename
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
FcChar8 * FcStrBasename(const FcChar8 *\fIfile\fB);
|
10
|
+
\fR.fi
|
11
|
+
.SH "DESCRIPTION"
|
12
|
+
.PP
|
13
|
+
Returns the filename of \fIfile\fR stripped of any leading
|
14
|
+
directory names. This is returned in newly allocated storage which should
|
15
|
+
be freed when no longer needed.
|
16
|
+
.SH "VERSION"
|
17
|
+
.PP
|
18
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,18 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcStrCmp" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcStrCmp \- compare UTF-8 strings
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
int FcStrCmp(const FcChar8 *\fIs1\fB);
|
10
|
+
(const FcChar8 *\fIs2\fB);
|
11
|
+
\fR.fi
|
12
|
+
.SH "DESCRIPTION"
|
13
|
+
.PP
|
14
|
+
Returns the usual <0, 0, >0 result of comparing
|
15
|
+
\fIs1\fR and \fIs2\fR\&.
|
16
|
+
.SH "VERSION"
|
17
|
+
.PP
|
18
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,19 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcStrCmpIgnoreCase" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcStrCmpIgnoreCase \- compare UTF-8 strings ignoring case
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
int FcStrCmpIgnoreCase(const FcChar8 *\fIs1\fB);
|
10
|
+
(const FcChar8 *\fIs2\fB);
|
11
|
+
\fR.fi
|
12
|
+
.SH "DESCRIPTION"
|
13
|
+
.PP
|
14
|
+
Returns the usual <0, 0, >0 result of comparing
|
15
|
+
\fIs1\fR and \fIs2\fR\&. This test is
|
16
|
+
case-insensitive for all proper UTF-8 encoded strings.
|
17
|
+
.SH "VERSION"
|
18
|
+
.PP
|
19
|
+
Fontconfig version 2.8.0
|
@@ -0,0 +1,18 @@
|
|
1
|
+
.\\" auto-generated by docbook2man-spec $Revision: 1.2 $
|
2
|
+
.TH "FcStrCopy" "3" "18 November 2009" "" ""
|
3
|
+
.SH NAME
|
4
|
+
FcStrCopy \- duplicate a string
|
5
|
+
.SH SYNOPSIS
|
6
|
+
.nf
|
7
|
+
\fB#include <fontconfig.h>
|
8
|
+
.sp
|
9
|
+
FcChar8 * FcStrCopy(const FcChar8 *\fIs\fB);
|
10
|
+
\fR.fi
|
11
|
+
.SH "DESCRIPTION"
|
12
|
+
.PP
|
13
|
+
Allocates memory, copies \fIs\fR and returns the resulting
|
14
|
+
buffer. Yes, this is \fBstrdup\fR, but that function isn't
|
15
|
+
available on every platform.
|
16
|
+
.SH "VERSION"
|
17
|
+
.PP
|
18
|
+
Fontconfig version 2.8.0
|