pango 0.90.2-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +678 -0
- data/README +33 -0
- data/Rakefile +83 -0
- data/ext/pango/Makefile +172 -0
- data/ext/pango/depend +7 -0
- data/ext/pango/extconf.rb +75 -0
- data/ext/pango/pango.def +18 -0
- data/ext/pango/rbpango.c +27 -0
- data/ext/pango/rbpango.h +93 -0
- data/ext/pango/rbpangoanalysis.c +197 -0
- data/ext/pango/rbpangoattribute.c +557 -0
- data/ext/pango/rbpangoattriterator.c +137 -0
- data/ext/pango/rbpangoattrlist.c +104 -0
- data/ext/pango/rbpangocairo.c +229 -0
- data/ext/pango/rbpangocolor.c +121 -0
- data/ext/pango/rbpangocontext.c +341 -0
- data/ext/pango/rbpangocoverage.c +104 -0
- data/ext/pango/rbpangoengine.c +65 -0
- data/ext/pango/rbpangofont.c +123 -0
- data/ext/pango/rbpangofontdescription.c +300 -0
- data/ext/pango/rbpangofontface.c +71 -0
- data/ext/pango/rbpangofontfamily.c +74 -0
- data/ext/pango/rbpangofontmap.c +104 -0
- data/ext/pango/rbpangofontmetrics.c +85 -0
- data/ext/pango/rbpangofontset.c +68 -0
- data/ext/pango/rbpangofontsetsimple.c +53 -0
- data/ext/pango/rbpangoglyphinfo.c +119 -0
- data/ext/pango/rbpangoglyphitem.c +129 -0
- data/ext/pango/rbpangoglyphstring.c +162 -0
- data/ext/pango/rbpangogravity.c +43 -0
- data/ext/pango/rbpangoinits.c +71 -0
- data/ext/pango/rbpangoitem.c +110 -0
- data/ext/pango/rbpangolanguage.c +88 -0
- data/ext/pango/rbpangolayout.c +593 -0
- data/ext/pango/rbpangolayoutiter.c +202 -0
- data/ext/pango/rbpangolayoutline.c +256 -0
- data/ext/pango/rbpangologattr.c +107 -0
- data/ext/pango/rbpangomain.c +213 -0
- data/ext/pango/rbpangomatrix.c +155 -0
- data/ext/pango/rbpangorectangle.c +178 -0
- data/ext/pango/rbpangorenderer.c +204 -0
- data/ext/pango/rbpangoscript.c +80 -0
- data/ext/pango/rbpangoscriptiter.c +91 -0
- data/ext/pango/rbpangotabarray.c +128 -0
- data/ext/pango/rbpangoversion.h +24 -0
- data/extconf.rb +49 -0
- data/lib/1.8/pango.so +0 -0
- data/lib/1.9/pango.so +0 -0
- data/lib/pango.rb +70 -0
- data/sample/attribute.rb +82 -0
- data/sample/break.rb +26 -0
- data/sample/gdk_layout.rb +27 -0
- data/sample/glyphstring.rb +61 -0
- data/sample/item.rb +35 -0
- data/sample/label.rb +23 -0
- data/sample/layout.rb +102 -0
- data/sample/pango_cairo.rb +66 -0
- data/sample/parse.rb +33 -0
- data/sample/sample.txt +10 -0
- data/sample/script.rb +21 -0
- data/test/pango-test-utils.rb +9 -0
- data/test/run-test.rb +28 -0
- data/test/test-attribute.rb +19 -0
- data/test/test-language.rb +7 -0
- data/test/test_layout.rb +20 -0
- data/vendor/local/bin/envsubst.exe +0 -0
- 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/freetype6.dll +0 -0
- data/vendor/local/bin/gettext.exe +0 -0
- data/vendor/local/bin/gettext.sh +123 -0
- data/vendor/local/bin/glib-genmarshal.exe +0 -0
- data/vendor/local/bin/glib-gettextize +188 -0
- data/vendor/local/bin/glib-mkenums +511 -0
- data/vendor/local/bin/gobject-query.exe +0 -0
- data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
- data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
- data/vendor/local/bin/intl.dll +0 -0
- data/vendor/local/bin/libasprintf-0.dll +0 -0
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libexpat-1.dll +0 -0
- data/vendor/local/bin/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
- data/vendor/local/bin/libgio-2.0-0.dll +0 -0
- data/vendor/local/bin/libglib-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
- data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
- data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
- data/vendor/local/bin/libpango-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
- data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
- data/vendor/local/bin/libpng14-14.dll +0 -0
- data/vendor/local/bin/ngettext.exe +0 -0
- data/vendor/local/bin/pango-querymodules.exe +0 -0
- data/vendor/local/bin/pango-view.exe +0 -0
- data/vendor/local/bin/xmlwf.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/fonts/fonts.conf +151 -0
- data/vendor/local/etc/fonts/fonts.dtd +224 -0
- data/vendor/local/etc/pango/pango.modules +5 -0
- data/vendor/local/include/autosprintf.h +66 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +123 -0
- data/vendor/local/include/cairo/cairo-features.h +27 -0
- data/vendor/local/include/cairo/cairo-ft.h +82 -0
- data/vendor/local/include/cairo/cairo-gobject.h +186 -0
- data/vendor/local/include/cairo/cairo-pdf.h +94 -0
- data/vendor/local/include/cairo/cairo-ps.h +114 -0
- data/vendor/local/include/cairo/cairo-script-interpreter.h +117 -0
- data/vendor/local/include/cairo/cairo-svg.h +82 -0
- data/vendor/local/include/cairo/cairo-version.h +8 -0
- data/vendor/local/include/cairo/cairo-win32.h +112 -0
- data/vendor/local/include/cairo/cairo.h +2684 -0
- 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/glib-2.0/gio/gappinfo.h +237 -0
- data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
- data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
- data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
- data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +116 -0
- data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
- data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
- data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
- data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +951 -0
- data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
- data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
- data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
- data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
- data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
- data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
- data/vendor/local/include/glib-2.0/gio/gio.h +101 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +703 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +48 -0
- data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
- data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
- data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
- data/vendor/local/include/glib-2.0/gio/giotypes.h +339 -0
- data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
- data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
- data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +69 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
- data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +176 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
- data/vendor/local/include/glib-2.0/gio/gsocketclient.h +130 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
- data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
- data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
- data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
- data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
- data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +151 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +55 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +54 -0
- data/vendor/local/include/glib-2.0/glib-object.h +41 -0
- data/vendor/local/include/glib-2.0/glib.h +97 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +63 -0
- data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
- data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gatomic.h +85 -0
- data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
- data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +191 -0
- data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
- data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
- data/vendor/local/include/glib-2.0/glib/gcompletion.h +77 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +138 -0
- data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
- data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
- data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
- data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
- data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
- data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
- data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
- data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
- data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
- data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
- data/vendor/local/include/glib-2.0/glib/gkeyfile.h +250 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +277 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +304 -0
- data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
- data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
- data/vendor/local/include/glib-2.0/glib/gmem.h +203 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +288 -0
- data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
- data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
- data/vendor/local/include/glib-2.0/glib/gpoll.h +93 -0
- data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
- data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
- data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
- data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
- data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
- data/vendor/local/include/glib-2.0/glib/gregex.h +243 -0
- data/vendor/local/include/glib-2.0/glib/grel.h +97 -0
- data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
- data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
- data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
- data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
- data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
- data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
- data/vendor/local/include/glib-2.0/glib/gstdio.h +159 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +267 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +292 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +408 -0
- data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
- data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
- data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
- data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
- data/vendor/local/include/glib-2.0/glib/gunicode.h +404 -0
- data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
- data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
- data/vendor/local/include/glib-2.0/glib/gvariant.h +224 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +305 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
- data/vendor/local/include/glib-2.0/gmodule.h +101 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +236 -0
- data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
- data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
- data/vendor/local/include/glib-2.0/gobject/gmarshal.h +169 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +562 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +166 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +410 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1083 -0
- data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
- data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
- data/vendor/local/include/glib-2.0/gobject/gtype.h +1608 -0
- data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
- data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
- data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +222 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +243 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/include/libpng14/png.h +2701 -0
- data/vendor/local/include/libpng14/pngconf.h +1525 -0
- data/vendor/local/include/pango-1.0/pango/pango-attributes.h +280 -0
- data/vendor/local/include/pango-1.0/pango/pango-bidi-type.h +135 -0
- data/vendor/local/include/pango-1.0/pango/pango-break.h +120 -0
- data/vendor/local/include/pango-1.0/pango/pango-context.h +111 -0
- data/vendor/local/include/pango-1.0/pango/pango-coverage.h +58 -0
- data/vendor/local/include/pango-1.0/pango/pango-engine.h +381 -0
- data/vendor/local/include/pango-1.0/pango/pango-enum-types.h +60 -0
- data/vendor/local/include/pango-1.0/pango/pango-features.h +12 -0
- data/vendor/local/include/pango-1.0/pango/pango-font.h +386 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontmap.h +96 -0
- data/vendor/local/include/pango-1.0/pango/pango-fontset.h +127 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph-item.h +94 -0
- data/vendor/local/include/pango-1.0/pango/pango-glyph.h +135 -0
- data/vendor/local/include/pango-1.0/pango/pango-gravity.h +114 -0
- data/vendor/local/include/pango-1.0/pango/pango-item.h +72 -0
- data/vendor/local/include/pango-1.0/pango/pango-language.h +56 -0
- data/vendor/local/include/pango-1.0/pango/pango-layout.h +291 -0
- data/vendor/local/include/pango-1.0/pango/pango-matrix.h +117 -0
- data/vendor/local/include/pango-1.0/pango/pango-modules.h +60 -0
- data/vendor/local/include/pango-1.0/pango/pango-ot.h +197 -0
- data/vendor/local/include/pango-1.0/pango/pango-renderer.h +260 -0
- data/vendor/local/include/pango-1.0/pango/pango-script.h +144 -0
- data/vendor/local/include/pango-1.0/pango/pango-tabs.h +76 -0
- data/vendor/local/include/pango-1.0/pango/pango-types.h +100 -0
- data/vendor/local/include/pango-1.0/pango/pango-utils.h +143 -0
- data/vendor/local/include/pango-1.0/pango/pango.h +48 -0
- data/vendor/local/include/pango-1.0/pango/pangocairo.h +154 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-decoder.h +110 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-font.h +151 -0
- data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +270 -0
- data/vendor/local/include/pango-1.0/pango/pangoft2.h +112 -0
- data/vendor/local/include/pango-1.0/pango/pangowin32.h +120 -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/GNU.Gettext.dll +0 -0
- data/vendor/local/lib/cairo.def +322 -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/gio-2.0.def +800 -0
- data/vendor/local/lib/gio-2.0.lib +0 -0
- data/vendor/local/lib/glib-2.0.def +1381 -0
- data/vendor/local/lib/glib-2.0.lib +0 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
- data/vendor/local/lib/gmodule-2.0.def +11 -0
- data/vendor/local/lib/gmodule-2.0.lib +0 -0
- data/vendor/local/lib/gobject-2.0.def +349 -0
- data/vendor/local/lib/gobject-2.0.lib +0 -0
- data/vendor/local/lib/gthread-2.0.def +3 -0
- data/vendor/local/lib/gthread-2.0.lib +0 -0
- data/vendor/local/lib/intl.lib +0 -0
- data/vendor/local/lib/libasprintf.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/libgio-2.0.dll.a +0 -0
- data/vendor/local/lib/libglib-2.0.dll.a +0 -0
- data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
- data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
- data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
- data/vendor/local/lib/libintl.def +31 -0
- data/vendor/local/lib/libintl.dll.a +0 -0
- data/vendor/local/lib/libpango-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
- data/vendor/local/lib/libpangowin32-1.0.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/pango-1.0.def +395 -0
- data/vendor/local/lib/pango-1.0.lib +0 -0
- data/vendor/local/lib/pangocairo-1.0.def +34 -0
- data/vendor/local/lib/pangocairo-1.0.lib +0 -0
- data/vendor/local/lib/pangoft2-1.0.def +85 -0
- data/vendor/local/lib/pangoft2-1.0.lib +0 -0
- data/vendor/local/lib/pangowin32-1.0.def +30 -0
- data/vendor/local/lib/pangowin32-1.0.lib +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-png.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo.pc +13 -0
- data/vendor/local/lib/pkgconfig/fontconfig.pc +11 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +12 -0
- data/vendor/local/lib/pkgconfig/gio-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng14.pc +11 -0
- data/vendor/local/lib/pkgconfig/pango.pc +13 -0
- data/vendor/local/lib/pkgconfig/pangocairo.pc +11 -0
- data/vendor/local/lib/pkgconfig/pangoft2.pc +11 -0
- data/vendor/local/lib/pkgconfig/pangowin32.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 +83 -0
- data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +5 -0
- data/vendor/local/manifest/expat-dev_2.0.1-1_win32.mft +10 -0
- data/vendor/local/manifest/expat_2.0.1-1_win32.mft +2 -0
- data/vendor/local/manifest/fontconfig-dev_2.8.0-2_win32.mft +387 -0
- data/vendor/local/manifest/fontconfig_2.8.0-2_win32.mft +3 -0
- data/vendor/local/manifest/freetype-dev_2.4.2-1_win32.mft +56 -0
- data/vendor/local/manifest/freetype_2.4.2-1_win32.mft +2 -0
- data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
- data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
- data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
- data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
- data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +15 -0
- data/vendor/local/manifest/libpng_1.4.3-1_win32.mft +2 -0
- data/vendor/local/manifest/pango-dev_1.28.1-2_win32.mft +116 -0
- data/vendor/local/manifest/pango_1.28.1-2_win32.mft +8 -0
- data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +8 -0
- data/vendor/local/manifest/zlib_1.2.5-2_win32.mft +2 -0
- data/vendor/local/share/aclocal/freetype2.m4 +194 -0
- data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
- data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
- data/vendor/local/share/doc/cairo_1.10.0-1_win32/COPYING +33 -0
- data/vendor/local/share/doc/cairo_1.10.0-1_win32/COPYING-LGPL-2.1 +510 -0
- data/vendor/local/share/doc/cairo_1.10.0-1_win32/COPYING-MPL-1.1 +470 -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/doc/gettext/bind_textdomain_codeset.3.html +165 -0
- data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
- data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
- data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
- data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
- data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
- data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
- data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
- data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
- data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
- data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
- data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/doc/pango-1.28.1/COPYING +482 -0
- data/vendor/local/share/doc/pango-dev-1.28.1/COPYING +482 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +252 -0
- data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
- data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
- data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +277 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +122 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +123 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +121 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +117 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +62 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +120 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +92 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +93 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +373 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +330 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +478 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +344 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +320 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +622 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +134 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +210 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +834 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +318 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +169 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +715 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +335 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +470 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +595 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +384 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +644 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +574 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +1457 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +1076 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1396 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2743 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +50 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +44 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +62 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +1175 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +473 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +641 -0
- data/vendor/local/share/gtk-doc/html/cairo/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +147 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +164 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +134 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +82 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +108 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +956 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.html +141 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +708 -0
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +73 -0
- data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/style.css +265 -0
- data/vendor/local/share/gtk-doc/html/cairo/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1390 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +531 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +568 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +295 -0
- data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
- data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
- data/vendor/local/share/gtk-doc/html/gio/GConverter.html +388 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +993 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +544 -0
- data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
- data/vendor/local/share/gtk-doc/html/gio/GFile.html +7450 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +115 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +520 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3116 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +182 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +183 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
- data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +195 -0
- data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
- data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
- data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +362 -0
- data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
- data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +263 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +248 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1006 -0
- data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
- data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +979 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2152 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +930 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +428 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +548 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +274 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +741 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
- data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +381 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +280 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +306 -0
- data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +709 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +180 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +128 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1088 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +206 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +97 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +4499 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +171 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +45 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +80 -0
- data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +96 -0
- data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +465 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +381 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +163 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +163 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +927 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +328 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +918 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1235 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +1384 -0
- data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +47 -0
- data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/index.html +318 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +1795 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +42 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +57 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +293 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +47 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +563 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +419 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +413 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +340 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +7835 -0
- data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +413 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +430 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2054 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1187 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1665 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2042 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1023 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1810 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +3798 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1815 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +629 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2556 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1029 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +703 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1045 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1523 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1466 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +204 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2648 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +483 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1283 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1212 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +466 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2947 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1290 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1719 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3379 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +314 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3356 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +150 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2395 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-running.html +302 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +112 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2084 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2556 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1171 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +336 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2717 -0
- data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
- data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2577 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +355 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +295 -0
- data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +406 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2355 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1423 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5242 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2609 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4227 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +413 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +230 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +723 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +757 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.html +187 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +734 -0
- data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn01.html +82 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
- data/vendor/local/share/gtk-doc/html/gobject/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +201 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +227 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +220 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +402 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +779 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +310 -0
- data/vendor/local/share/gtk-doc/html/pango/PangoRenderer.html +1002 -0
- data/vendor/local/share/gtk-doc/html/pango/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.10.html +102 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.12.html +62 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.14.html +68 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.16.html +136 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.18.html +114 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.2.html +94 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.20.html +80 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.22.html +92 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.24.html +80 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.26.html +60 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.28.html +55 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.4.html +132 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.6.html +112 -0
- data/vendor/local/share/gtk-doc/html/pango/index-1.8.html +120 -0
- data/vendor/local/share/gtk-doc/html/pango/index-all.html +1537 -0
- data/vendor/local/share/gtk-doc/html/pango/index-deprecated.html +158 -0
- data/vendor/local/share/gtk-doc/html/pango/index.html +165 -0
- data/vendor/local/share/gtk-doc/html/pango/index.sgml +1089 -0
- data/vendor/local/share/gtk-doc/html/pango/layout.gif +0 -0
- data/vendor/local/share/gtk-doc/html/pango/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +89 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-ATSUI-Fonts.html +138 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +441 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +1198 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +385 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +305 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +3075 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +788 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +2100 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +2977 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +715 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +278 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +1729 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +1135 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +453 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +2440 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +1534 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +297 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +431 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +800 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-X-Fonts-and-Rendering.html +1096 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +1031 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +78 -0
- data/vendor/local/share/gtk-doc/html/pango/pango-querymodules.html +92 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.devhelp +799 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.devhelp2 +993 -0
- data/vendor/local/share/gtk-doc/html/pango/pango.html +84 -0
- data/vendor/local/share/gtk-doc/html/pango/rendering.html +71 -0
- data/vendor/local/share/gtk-doc/html/pango/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/pango/style.css +257 -0
- data/vendor/local/share/gtk-doc/html/pango/tools.html +54 -0
- data/vendor/local/share/gtk-doc/html/pango/up.png +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/locale.alias +77 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/man/man1/envsubst.1 +54 -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/man1/gettext.1 +69 -0
- data/vendor/local/share/man/man1/glib-genmarshal.1 +307 -0
- data/vendor/local/share/man/man1/glib-mkenums.1 +234 -0
- data/vendor/local/share/man/man1/gobject-query.1 +83 -0
- data/vendor/local/share/man/man1/ngettext.1 +68 -0
- data/vendor/local/share/man/man1/pango-querymodules.1 +47 -0
- data/vendor/local/share/man/man1/pango-view.1 +118 -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/bind_textdomain_codeset.3 +72 -0
- data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
- data/vendor/local/share/man/man3/dcgettext.3 +1 -0
- data/vendor/local/share/man/man3/dcngettext.3 +1 -0
- data/vendor/local/share/man/man3/dgettext.3 +1 -0
- data/vendor/local/share/man/man3/dngettext.3 +1 -0
- data/vendor/local/share/man/man3/gettext.3 +99 -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/man3/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -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 +1262 -0
- data/vendor/local/src/tml/packaging/cairo_1.10.0-1_win32.sh +76 -0
- 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/gettext_0.18.1.1-2_win32.log +10423 -0
- data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
- data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
- data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -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/pango_1.28.1-2_win32.log +1070 -0
- data/vendor/local/src/tml/packaging/pango_1.28.1-2_win32.sh +579 -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 +1537 -0
@@ -0,0 +1,74 @@
|
|
1
|
+
.TH PNG 5 "June 26, 2010"
|
2
|
+
.SH NAME
|
3
|
+
png \- Portable Network Graphics (PNG) format
|
4
|
+
.SH DESCRIPTION
|
5
|
+
PNG (Portable Network Graphics) is an extensible file format for the
|
6
|
+
lossless, portable, well-compressed storage of raster images. PNG provides
|
7
|
+
a patent-free replacement for GIF and can also replace many
|
8
|
+
common uses of TIFF. Indexed-color, grayscale, and truecolor images are
|
9
|
+
supported, plus an optional alpha channel. Sample depths range from
|
10
|
+
1 to 16 bits.
|
11
|
+
.br
|
12
|
+
|
13
|
+
PNG is designed to work well in online viewing applications, such as the
|
14
|
+
World Wide Web, so it is fully streamable with a progressive display
|
15
|
+
option. PNG is robust, providing both full file integrity checking and
|
16
|
+
fast, simple detection of common transmission errors. Also, PNG can store
|
17
|
+
gamma and chromaticity data for improved color matching on heterogeneous
|
18
|
+
platforms.
|
19
|
+
|
20
|
+
.SH "SEE ALSO"
|
21
|
+
.IR libpng(3), zlib(3), deflate(5), and zlib(5)
|
22
|
+
.LP
|
23
|
+
PNG specification (second edition), November 2003:
|
24
|
+
.IP
|
25
|
+
.br
|
26
|
+
<http://www.w3.org/TR/2003/REC-PNG-20031110/
|
27
|
+
PNG 1.2 specification, July 1999:
|
28
|
+
.IP
|
29
|
+
.br
|
30
|
+
http://www.libpng.org/pub/png
|
31
|
+
.LP
|
32
|
+
PNG 1.0 specification, October 1996:
|
33
|
+
.IP
|
34
|
+
.br
|
35
|
+
RFC 2083
|
36
|
+
.IP
|
37
|
+
.br
|
38
|
+
ftp://ds.internic.net/rfc/rfc2083.txt
|
39
|
+
.br
|
40
|
+
or (as a W3C Recommendation) at
|
41
|
+
.br
|
42
|
+
http://www.w3.org/TR/REC-png.html
|
43
|
+
.SH AUTHORS
|
44
|
+
This man page: Glenn Randers-Pehrson
|
45
|
+
.LP
|
46
|
+
Portable Network Graphics (PNG) Specification (Second Edition)
|
47
|
+
Information technology - Computer graphics and image processing -
|
48
|
+
Portable Network Graphics (PNG): Functional specification.
|
49
|
+
ISO/IEC 15948:2003 (E) (November 10, 2003): David Duce and others.
|
50
|
+
.LP
|
51
|
+
Portable Network Graphics (PNG) Specification Version 1.2 (July 8, 1999):
|
52
|
+
Glenn Randers-Pehrson and others (png-list).
|
53
|
+
.LP
|
54
|
+
Portable Network Graphics (PNG) Specification Version 1.0 (October 1, 1996):
|
55
|
+
Thomas Boutell and others (png-list).
|
56
|
+
.LP
|
57
|
+
|
58
|
+
|
59
|
+
.SH COPYRIGHT NOTICE
|
60
|
+
.LP
|
61
|
+
This man page is Copyright (c) 1998-2006 Glenn Randers-Pehrson. See png.h
|
62
|
+
for conditions of use and distribution.
|
63
|
+
.LP
|
64
|
+
The PNG Specification (Second Edition) is
|
65
|
+
Copyright (c) 2003 W3C. (MIT, ERCIM, Keio), All Rights Reserved.
|
66
|
+
.LP
|
67
|
+
The PNG-1.2 specification is copyright (c) 1999 Glenn Randers-Pehrson.
|
68
|
+
See the specification for conditions of use and distribution.
|
69
|
+
.LP
|
70
|
+
The PNG-1.0 specification is copyright (c) 1996 Massachusetts Institute of
|
71
|
+
Technology. See the specification for conditions of use and distribution.
|
72
|
+
.LP
|
73
|
+
.\" end of man page
|
74
|
+
|
@@ -0,0 +1,1262 @@
|
|
1
|
+
++ sed -e 's/need_relink=yes/need_relink=no # no way --tml/'
|
2
|
+
++ mv build/ltmain.temp build/ltmain.sh
|
3
|
+
++ sed -e 's!file /!dont-want-to-use-file!'
|
4
|
+
++ mv configure.temp configure
|
5
|
+
+++ latest --arch=win32 glib pkg-config pixman libpng fontconfig freetype
|
6
|
+
++ DEPS='glib-2.24.2-2 pkg-config-0.23-3 pixman-0.18.4-2 libpng-1.4.3-1 fontconfig-2.8.0-2 freetype-2.4.2-1'
|
7
|
+
++ PKG_CONFIG_PATH=/dummy
|
8
|
+
++ for D in '$DEPS'
|
9
|
+
++ PATH='/devel/dist/win32/glib-2.24.2-2/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/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:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
10
|
+
++ PKG_CONFIG_PATH=/devel/dist/win32/glib-2.24.2-2/lib/pkgconfig:/dummy
|
11
|
+
++ for D in '$DEPS'
|
12
|
+
++ PATH='/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-2/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/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:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
13
|
+
++ PKG_CONFIG_PATH=/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-2/lib/pkgconfig:/dummy
|
14
|
+
++ for D in '$DEPS'
|
15
|
+
++ PATH='/devel/dist/win32/pixman-0.18.4-2/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-2/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/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:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
16
|
+
++ PKG_CONFIG_PATH=/devel/dist/win32/pixman-0.18.4-2/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-2/lib/pkgconfig:/dummy
|
17
|
+
++ for D in '$DEPS'
|
18
|
+
++ PATH='/devel/dist/win32/libpng-1.4.3-1/bin:/devel/dist/win32/pixman-0.18.4-2/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-2/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/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:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
19
|
+
++ PKG_CONFIG_PATH=/devel/dist/win32/libpng-1.4.3-1/lib/pkgconfig:/devel/dist/win32/pixman-0.18.4-2/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-2/lib/pkgconfig:/dummy
|
20
|
+
++ for D in '$DEPS'
|
21
|
+
++ PATH='/devel/dist/win32/fontconfig-2.8.0-2/bin:/devel/dist/win32/libpng-1.4.3-1/bin:/devel/dist/win32/pixman-0.18.4-2/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-2/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/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:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
22
|
+
++ PKG_CONFIG_PATH=/devel/dist/win32/fontconfig-2.8.0-2/lib/pkgconfig:/devel/dist/win32/libpng-1.4.3-1/lib/pkgconfig:/devel/dist/win32/pixman-0.18.4-2/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-2/lib/pkgconfig:/dummy
|
23
|
+
++ for D in '$DEPS'
|
24
|
+
++ PATH='/devel/dist/win32/freetype-2.4.2-1/bin:/devel/dist/win32/fontconfig-2.8.0-2/bin:/devel/dist/win32/libpng-1.4.3-1/bin:/devel/dist/win32/pixman-0.18.4-2/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-2/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/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:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
25
|
+
++ PKG_CONFIG_PATH=/devel/dist/win32/freetype-2.4.2-1/lib/pkgconfig:/devel/dist/win32/fontconfig-2.8.0-2/lib/pkgconfig:/devel/dist/win32/libpng-1.4.3-1/lib/pkgconfig:/devel/dist/win32/pixman-0.18.4-2/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-2/lib/pkgconfig:/dummy
|
26
|
+
+++ latest --arch=win32 zlib
|
27
|
+
++ ZLIB=zlib-1.2.5-2
|
28
|
+
++ png_REQUIRES=libpng
|
29
|
+
++ CC='gcc -mms-bitfields -mthreads'
|
30
|
+
++ CPPFLAGS=-I/devel/dist/win32/zlib-1.2.5-2/include
|
31
|
+
++ LDFLAGS=-L/devel/dist/win32/zlib-1.2.5-2/lib
|
32
|
+
++ CFLAGS=-O2
|
33
|
+
++ ./configure --disable-static --enable-ft=yes --prefix=c:/devel/target/94d7ecd65464faa6be24937a758e580f
|
34
|
+
checking for gcc... gcc -mms-bitfields -mthreads
|
35
|
+
checking whether the C compiler works... yes
|
36
|
+
checking for C compiler default output file name... a.exe
|
37
|
+
checking for suffix of executables... .exe
|
38
|
+
checking whether we are cross compiling... no
|
39
|
+
checking for suffix of object files... o
|
40
|
+
checking whether we are using the GNU C compiler... yes
|
41
|
+
checking whether gcc -mms-bitfields -mthreads accepts -g... yes
|
42
|
+
checking for gcc -mms-bitfields -mthreads option to accept ISO C89... none needed
|
43
|
+
checking how to run the C preprocessor... gcc -mms-bitfields -mthreads -E
|
44
|
+
checking for grep that handles long lines and -e... /bin/grep
|
45
|
+
checking for egrep... /bin/grep -E
|
46
|
+
checking for ANSI C header files... yes
|
47
|
+
checking for sys/types.h... yes
|
48
|
+
checking for sys/stat.h... yes
|
49
|
+
checking for stdlib.h... yes
|
50
|
+
checking for string.h... yes
|
51
|
+
checking for memory.h... yes
|
52
|
+
checking for strings.h... yes
|
53
|
+
checking for inttypes.h... yes
|
54
|
+
checking for stdint.h... yes
|
55
|
+
checking for unistd.h... yes
|
56
|
+
checking minix/config.h usability... no
|
57
|
+
checking minix/config.h presence... no
|
58
|
+
checking for minix/config.h... no
|
59
|
+
checking whether it is safe to define __EXTENSIONS__... yes
|
60
|
+
checking for a BSD-compatible install... /opt/local/bin/install -c
|
61
|
+
checking whether build environment is sane... yes
|
62
|
+
checking for a thread-safe mkdir -p... /bin/mkdir -p
|
63
|
+
checking for gawk... gawk
|
64
|
+
checking whether make sets $(MAKE)... yes
|
65
|
+
checking for style of include used by make... GNU
|
66
|
+
checking dependency style of gcc -mms-bitfields -mthreads... gcc3
|
67
|
+
checking build system type... i686-pc-mingw32
|
68
|
+
checking host system type... i686-pc-mingw32
|
69
|
+
checking for as... as
|
70
|
+
checking for dlltool... dlltool
|
71
|
+
checking for objdump... objdump
|
72
|
+
checking how to print strings... printf
|
73
|
+
checking for a sed that does not truncate output... /bin/sed
|
74
|
+
checking for fgrep... /bin/grep -F
|
75
|
+
checking for ld used by gcc -mms-bitfields -mthreads... c:/opt/mingw/mingw32/bin/ld.exe
|
76
|
+
checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
|
77
|
+
checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
|
78
|
+
checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
|
79
|
+
checking whether ln -s works... yes
|
80
|
+
checking the maximum length of command line arguments... 8192
|
81
|
+
checking whether the shell understands some XSI constructs... yes
|
82
|
+
checking whether the shell understands "+="... yes
|
83
|
+
checking for c:/opt/mingw/mingw32/bin/ld.exe option to reload object files... -r
|
84
|
+
checking for objdump... (cached) objdump
|
85
|
+
checking how to recognize dependent libraries... file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)
|
86
|
+
checking for ar... ar
|
87
|
+
checking for strip... strip
|
88
|
+
checking for ranlib... ranlib
|
89
|
+
checking command to parse /opt/mingw/bin/nm output from gcc -mms-bitfields -mthreads object... ok
|
90
|
+
checking for dlfcn.h... no
|
91
|
+
checking for objdir... .libs
|
92
|
+
checking if gcc -mms-bitfields -mthreads supports -fno-rtti -fno-exceptions... no
|
93
|
+
checking for gcc -mms-bitfields -mthreads option to produce PIC... -DDLL_EXPORT -DPIC
|
94
|
+
checking if gcc -mms-bitfields -mthreads PIC flag -DDLL_EXPORT -DPIC works... yes
|
95
|
+
checking if gcc -mms-bitfields -mthreads static flag -static works... yes
|
96
|
+
checking if gcc -mms-bitfields -mthreads supports -c -o file.o... yes
|
97
|
+
checking if gcc -mms-bitfields -mthreads supports -c -o file.o... (cached) yes
|
98
|
+
checking whether the gcc -mms-bitfields -mthreads linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
|
99
|
+
checking whether -lc should be explicitly linked in... yes
|
100
|
+
checking dynamic linker characteristics... Win32 ld.exe
|
101
|
+
checking how to hardcode library paths into programs... immediate
|
102
|
+
checking whether stripping libraries is possible... yes
|
103
|
+
checking if libtool supports shared libraries... yes
|
104
|
+
checking whether to build shared libraries... yes
|
105
|
+
checking whether to build static libraries... no
|
106
|
+
checking for pkg-config... /devel/dist/win32/pkg-config-0.23-3/bin/pkg-config
|
107
|
+
checking pkg-config is at least version 0.9.0... yes
|
108
|
+
checking whether to build gtk-doc documentation... no
|
109
|
+
checking for gtkdoc-check... no
|
110
|
+
checking for special C compiler options needed for large files... no
|
111
|
+
checking for _FILE_OFFSET_BITS value needed for large files... unknown
|
112
|
+
checking for _LARGE_FILES value needed for large files... unknown
|
113
|
+
checking for find... /bin/find
|
114
|
+
checking for xargs... /bin/xargs
|
115
|
+
checking for gcc... (cached) gcc -mms-bitfields -mthreads
|
116
|
+
checking whether we are using the GNU C compiler... (cached) yes
|
117
|
+
checking whether gcc -mms-bitfields -mthreads accepts -g... (cached) yes
|
118
|
+
checking for gcc -mms-bitfields -mthreads option to accept ISO C89... (cached) none needed
|
119
|
+
checking how to run the C preprocessor... gcc -mms-bitfields -mthreads -E
|
120
|
+
checking for g++... g++
|
121
|
+
checking whether we are using the GNU C++ compiler... yes
|
122
|
+
checking whether g++ accepts -g... yes
|
123
|
+
checking dependency style of g++... gcc3
|
124
|
+
checking how to run the C++ preprocessor... g++ -E
|
125
|
+
checking for ld used by g++... c:/opt/mingw/mingw32/bin/ld.exe
|
126
|
+
checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
|
127
|
+
checking whether the g++ linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
|
128
|
+
checking for g++ option to produce PIC... -DDLL_EXPORT -DPIC
|
129
|
+
checking if g++ PIC flag -DDLL_EXPORT -DPIC works... yes
|
130
|
+
checking if g++ static flag -static works... yes
|
131
|
+
checking if g++ supports -c -o file.o... yes
|
132
|
+
checking if g++ supports -c -o file.o... (cached) yes
|
133
|
+
checking whether the g++ linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
|
134
|
+
checking dynamic linker characteristics... Win32 ld.exe
|
135
|
+
checking how to hardcode library paths into programs... immediate
|
136
|
+
checking whether gcc -mms-bitfields -mthreads and cc understand -c and -o together... yes
|
137
|
+
checking for inline... inline
|
138
|
+
checking for pkg-config... (cached) /devel/dist/win32/pkg-config-0.23-3/bin/pkg-config
|
139
|
+
checking pkg-config is at least version 0.9.0... yes
|
140
|
+
checking for supported warning flags...
|
141
|
+
checking whether gcc -mms-bitfields -mthreads supports -Werror... yes
|
142
|
+
checking whether gcc -mms-bitfields -mthreads supports -errwarn... no
|
143
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wall... yes
|
144
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wextra... yes
|
145
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wold-style-definition... yes
|
146
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wdeclaration-after-statement... yes
|
147
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wmissing-declarations... yes
|
148
|
+
checking whether gcc -mms-bitfields -mthreads supports -Werror-implicit-function-declaration... yes
|
149
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wnested-externs... yes
|
150
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wpointer-arith... yes
|
151
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wwrite-strings... yes
|
152
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wsign-compare... yes
|
153
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wstrict-prototypes... yes
|
154
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wmissing-prototypes... yes
|
155
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wpacked... yes
|
156
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wswitch-enum... yes
|
157
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wmissing-format-attribute... yes
|
158
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wbad-function-cast... yes
|
159
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wvolatile-register-var... yes
|
160
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wstrict-aliasing=2... yes
|
161
|
+
checking whether gcc -mms-bitfields -mthreads supports -Winit-self... yes
|
162
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wunsafe-loop-optimizations... yes
|
163
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wno-missing-field-initializers... yes
|
164
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wno-unused-parameter... yes
|
165
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wno-attributes... yes
|
166
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wno-long-long... yes
|
167
|
+
checking whether gcc -mms-bitfields -mthreads supports -Winline... yes
|
168
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wlogical-op... yes
|
169
|
+
checking whether gcc -mms-bitfields -mthreads supports -erroff=E_ENUM_TYPE_MISMATCH_ARG... no
|
170
|
+
checking whether gcc -mms-bitfields -mthreads supports -erroff=E_ENUM_TYPE_MISMATCH_OP... no
|
171
|
+
checking whether gcc -mms-bitfields -mthreads supports -fno-strict-aliasing... yes
|
172
|
+
checking whether gcc -mms-bitfields -mthreads supports -fno-common... yes
|
173
|
+
checking whether gcc -mms-bitfields -mthreads supports -flto... no
|
174
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wp,-D_FORTIFY_SOURCE=2... yes
|
175
|
+
checking which warning flags were supported... -Wall -Wextra -Wold-style-definition -Wdeclaration-after-statement -Wmissing-declarations -Werror-implicit-function-declaration -Wnested-externs -Wpointer-arith -Wwrite-strings -Wsign-compare -Wstrict-prototypes -Wmissing-prototypes -Wpacked -Wswitch-enum -Wmissing-format-attribute -Wbad-function-cast -Wvolatile-register-var -Wstrict-aliasing=2 -Winit-self -Wunsafe-loop-optimizations -Wno-missing-field-initializers -Wno-unused-parameter -Wno-attributes -Wno-long-long -Winline -Wlogical-op -fno-strict-aliasing -fno-common -Wp,-D_FORTIFY_SOURCE=2
|
176
|
+
checking how to enable unused result warnings... __attribute__((__warn_unused_result__))
|
177
|
+
checking how to allow undefined symbols in shared libraries used by test suite... checking whether gcc -mms-bitfields -mthreads supports -Wl,--allow-shlib-undefined... yes
|
178
|
+
-Wl,--allow-shlib-undefined
|
179
|
+
checking whether byte ordering is bigendian... no
|
180
|
+
checking whether float word ordering is bigendian... no
|
181
|
+
checking for native atomic primitives... checking atomic_ops.h usability... no
|
182
|
+
checking atomic_ops.h presence... no
|
183
|
+
checking for atomic_ops.h... no
|
184
|
+
checking libkern/OSAtomic.h usability... no
|
185
|
+
checking libkern/OSAtomic.h presence... no
|
186
|
+
checking for libkern/OSAtomic.h... no
|
187
|
+
none
|
188
|
+
checking whether atomic ops require a memory barrier... no
|
189
|
+
checking size of void *... 4
|
190
|
+
checking size of int... 4
|
191
|
+
checking size of long... 4
|
192
|
+
checking size of long long... 8
|
193
|
+
checking size of size_t... 4
|
194
|
+
checking for native Win32... yes
|
195
|
+
checking for Sun Solaris (non-POSIX ctime_r)... no
|
196
|
+
checking for cos in -lm... yes
|
197
|
+
checking for sched_yield in -lrt... no
|
198
|
+
checking for shm_open in -lrt... no
|
199
|
+
checking for connect in -lsocket... no
|
200
|
+
checking for __builtin_return_address(0)... yes
|
201
|
+
checking for stdint.h... (cached) yes
|
202
|
+
checking for inttypes.h... (cached) yes
|
203
|
+
checking sys/int_types.h usability... no
|
204
|
+
checking sys/int_types.h presence... no
|
205
|
+
checking for sys/int_types.h... no
|
206
|
+
checking for uint64_t... yes
|
207
|
+
checking for uint128_t... no
|
208
|
+
checking for __uint128_t... no
|
209
|
+
checking fcntl.h usability... yes
|
210
|
+
checking fcntl.h presence... yes
|
211
|
+
checking for fcntl.h... yes
|
212
|
+
checking for unistd.h... (cached) yes
|
213
|
+
checking signal.h usability... yes
|
214
|
+
checking signal.h presence... yes
|
215
|
+
checking for signal.h... yes
|
216
|
+
checking for sys/stat.h... (cached) yes
|
217
|
+
checking sys/socket.h usability... no
|
218
|
+
checking sys/socket.h presence... no
|
219
|
+
checking for sys/socket.h... no
|
220
|
+
checking sys/poll.h usability... no
|
221
|
+
checking sys/poll.h presence... no
|
222
|
+
checking for sys/poll.h... no
|
223
|
+
checking sys/un.h usability... no
|
224
|
+
checking sys/un.h presence... no
|
225
|
+
checking for sys/un.h... no
|
226
|
+
checking for alarm... no
|
227
|
+
checking sched.h usability... no
|
228
|
+
checking sched.h presence... no
|
229
|
+
checking for sched.h... no
|
230
|
+
checking sys/mman.h usability... no
|
231
|
+
checking sys/mman.h presence... no
|
232
|
+
checking for sys/mman.h... no
|
233
|
+
checking time.h usability... yes
|
234
|
+
checking time.h presence... yes
|
235
|
+
checking for time.h... yes
|
236
|
+
checking for clock_gettime... no
|
237
|
+
checking fenv.h usability... yes
|
238
|
+
checking fenv.h presence... yes
|
239
|
+
checking for fenv.h... yes
|
240
|
+
checking for feenableexcept... no
|
241
|
+
checking for fedisableexcept... no
|
242
|
+
checking for feclearexcept... yes
|
243
|
+
checking libgen.h usability... yes
|
244
|
+
checking libgen.h presence... yes
|
245
|
+
checking for libgen.h... yes
|
246
|
+
checking byteswap.h usability... no
|
247
|
+
checking byteswap.h presence... no
|
248
|
+
checking for byteswap.h... no
|
249
|
+
checking for signal.h... (cached) yes
|
250
|
+
checking setjmp.h usability... yes
|
251
|
+
checking setjmp.h presence... yes
|
252
|
+
checking for setjmp.h... yes
|
253
|
+
checking for fenv.h... (cached) yes
|
254
|
+
checking for vasnprintf... no
|
255
|
+
checking for link... no
|
256
|
+
checking for ctime_r... no
|
257
|
+
checking for drand48... no
|
258
|
+
checking for flockfile... no
|
259
|
+
checking for ffs... no
|
260
|
+
checking windows.h usability... yes
|
261
|
+
checking windows.h presence... yes
|
262
|
+
checking for windows.h... yes
|
263
|
+
checking for sys/stat.h... (cached) yes
|
264
|
+
checking io.h usability... yes
|
265
|
+
checking io.h presence... yes
|
266
|
+
checking for io.h... yes
|
267
|
+
checking for mkdir... yes
|
268
|
+
checking mkdir variant... mkdir(path)
|
269
|
+
checking for fork... no
|
270
|
+
checking for waitpid... no
|
271
|
+
checking for raise... yes
|
272
|
+
checking for VALGRIND... no
|
273
|
+
no
|
274
|
+
checking for compress in -lz... yes
|
275
|
+
checking zlib.h usability... yes
|
276
|
+
checking zlib.h presence... yes
|
277
|
+
checking for zlib.h... yes
|
278
|
+
checking for dlsym in -ldl... no
|
279
|
+
checking for dlsym... no
|
280
|
+
checking for dlfcn.h... (cached) no
|
281
|
+
checking for X... no
|
282
|
+
checking for cairo's Xlib surface backend feature...
|
283
|
+
checking for xlib... no
|
284
|
+
no
|
285
|
+
checking whether cairo's Xlib surface backend feature could be enabled... no (requires X development libraries)
|
286
|
+
checking for cairo's Xlib Xrender surface backend feature...
|
287
|
+
checking whether cairo's Xlib Xrender surface backend feature could be enabled... no (requires --enable-xlib)
|
288
|
+
checking for cairo's XCB/SHM functions feature...
|
289
|
+
checking whether cairo's XCB/SHM functions feature could be enabled... no (requires both --enable-xcb)
|
290
|
+
checking for cairo's Quartz surface backend feature...
|
291
|
+
checking ApplicationServices/ApplicationServices.h usability... no
|
292
|
+
checking ApplicationServices/ApplicationServices.h presence... no
|
293
|
+
checking for ApplicationServices/ApplicationServices.h... no
|
294
|
+
checking CoreGraphics/CoreGraphics.h usability... no
|
295
|
+
checking CoreGraphics/CoreGraphics.h presence... no
|
296
|
+
checking for CoreGraphics/CoreGraphics.h... no
|
297
|
+
checking whether cairo's Quartz surface backend feature could be enabled... no (requires CoreGraphics framework)
|
298
|
+
checking for cairo's Quartz font backend feature...
|
299
|
+
checking whether cairo's Quartz font backend feature could be enabled... no (requires CoreGraphics framework)
|
300
|
+
checking for cairo's Microsoft Windows surface backend feature...
|
301
|
+
checking whether cairo's Microsoft Windows surface backend feature could be enabled... yes
|
302
|
+
checking for cairo's Microsoft Windows font backend feature...
|
303
|
+
checking whether cairo's Microsoft Windows font backend feature could be enabled... yes
|
304
|
+
checking for gs... no
|
305
|
+
configure: WARNING: Win32 Printing backend will not be tested since ghostscript is not available
|
306
|
+
checking for cairo's PNG functions feature...
|
307
|
+
checking for png... yes
|
308
|
+
checking whether cairo's PNG functions feature could be enabled... yes
|
309
|
+
checking for cairo's EGL functions feature...
|
310
|
+
checking whether cairo's EGL functions feature could be enabled... no (not required by any backend)
|
311
|
+
checking for cairo's GLX functions feature...
|
312
|
+
checking whether cairo's GLX functions feature could be enabled... no (not required by any backend)
|
313
|
+
checking for cairo's WGL functions feature...
|
314
|
+
checking whether cairo's WGL functions feature could be enabled... no (not required by any backend)
|
315
|
+
checking for cairo's FreeType font backend feature...
|
316
|
+
checking for FREETYPE... yes
|
317
|
+
checking whether cairo's FreeType font backend feature could be enabled... yes
|
318
|
+
checking for cairo's Fontconfig font backend feature...
|
319
|
+
checking for FONTCONFIG... yes
|
320
|
+
checking whether cairo's Fontconfig font backend feature could be enabled... yes
|
321
|
+
checking for FT_Bitmap_Size.y_ppem... yes
|
322
|
+
checking for FT_GlyphSlot_Embolden... yes
|
323
|
+
checking for FT_Load_Sfnt_Table... yes
|
324
|
+
checking for FT_Library_SetLcdFilter... yes
|
325
|
+
checking for FcInit... yes
|
326
|
+
checking for FcFini... yes
|
327
|
+
checking for cairo's PostScript surface backend feature...
|
328
|
+
checking whether cairo's PostScript surface backend feature could be enabled... yes
|
329
|
+
checking for gs... no
|
330
|
+
configure: WARNING: PS backend will not be tested since ghostscript is not available
|
331
|
+
checking for LIBSPECTRE... no
|
332
|
+
checking for cairo's PDF surface backend feature...
|
333
|
+
checking whether cairo's PDF surface backend feature could be enabled... yes
|
334
|
+
checking for POPPLER... no
|
335
|
+
configure: WARNING: PDF backend will not be tested since poppler >= 0.13.3 is not available
|
336
|
+
checking for cairo's SVG surface backend feature...
|
337
|
+
checking whether cairo's SVG surface backend feature could be enabled... yes
|
338
|
+
checking for LIBRSVG... no
|
339
|
+
configure: WARNING: SVG backend will not be tested since librsvg >= 2.15.0 is not available
|
340
|
+
checking for cairo's image surface backend feature...
|
341
|
+
checking for pixman... yes
|
342
|
+
checking whether cairo's image surface backend feature could be enabled... yes
|
343
|
+
checking for cairo's recording surface backend feature...
|
344
|
+
checking whether cairo's recording surface backend feature could be enabled... yes
|
345
|
+
checking for cairo's user font backend feature...
|
346
|
+
checking whether cairo's user font backend feature could be enabled... yes
|
347
|
+
checking for cairo's pthread feature...
|
348
|
+
checking whether cairo's pthread feature could be enabled... no (can't link with -lpthread or -pthread)
|
349
|
+
checking for cairo's gobject functions feature...
|
350
|
+
checking for GOBJECT... yes
|
351
|
+
checking whether cairo's gobject functions feature could be enabled... yes
|
352
|
+
checking for GOBJECT... yes
|
353
|
+
checking for cairo's cairo-trace feature...
|
354
|
+
checking whether cairo's cairo-trace feature could be enabled... no (requires dynamic linker and zlib and real pthreads)
|
355
|
+
checking for cairo's cairo-script-interpreter feature...
|
356
|
+
checking whether cairo's cairo-script-interpreter feature could be enabled... yes
|
357
|
+
checking for bfd_openr in -lbfd... no
|
358
|
+
checking libiberty.h usability... no
|
359
|
+
checking libiberty.h presence... no
|
360
|
+
checking for libiberty.h... no
|
361
|
+
checking for cairo's symbol-lookup feature...
|
362
|
+
checking whether cairo's symbol-lookup feature could be enabled... no (requires bfd)
|
363
|
+
checking for glib... yes
|
364
|
+
checking for shm_open in -lrt... (cached) no
|
365
|
+
checking for gtk... no
|
366
|
+
configure: creating ./config.status
|
367
|
+
config.status: creating src/cairo.pc
|
368
|
+
config.status: creating cairo-uninstalled.pc
|
369
|
+
config.status: creating src/cairo-win32.pc
|
370
|
+
config.status: creating cairo-win32-uninstalled.pc
|
371
|
+
config.status: creating src/cairo-win32-font.pc
|
372
|
+
config.status: creating cairo-win32-font-uninstalled.pc
|
373
|
+
config.status: creating src/cairo-png.pc
|
374
|
+
config.status: creating cairo-png-uninstalled.pc
|
375
|
+
config.status: creating src/cairo-ft.pc
|
376
|
+
config.status: creating cairo-ft-uninstalled.pc
|
377
|
+
config.status: creating src/cairo-fc.pc
|
378
|
+
config.status: creating cairo-fc-uninstalled.pc
|
379
|
+
config.status: creating src/cairo-ps.pc
|
380
|
+
config.status: creating cairo-ps-uninstalled.pc
|
381
|
+
config.status: creating src/cairo-pdf.pc
|
382
|
+
config.status: creating cairo-pdf-uninstalled.pc
|
383
|
+
config.status: creating src/cairo-svg.pc
|
384
|
+
config.status: creating cairo-svg-uninstalled.pc
|
385
|
+
config.status: creating src/cairo-gobject.pc
|
386
|
+
config.status: creating cairo-gobject-uninstalled.pc
|
387
|
+
config.status: creating Makefile
|
388
|
+
config.status: creating boilerplate/Makefile
|
389
|
+
config.status: creating src/Makefile
|
390
|
+
config.status: creating test/Makefile
|
391
|
+
config.status: creating test/pdiff/Makefile
|
392
|
+
config.status: creating perf/Makefile
|
393
|
+
config.status: creating util/Makefile
|
394
|
+
config.status: creating util/cairo-fdr/Makefile
|
395
|
+
config.status: creating util/cairo-gobject/Makefile
|
396
|
+
config.status: creating util/cairo-script/Makefile
|
397
|
+
config.status: creating util/cairo-script/examples/Makefile
|
398
|
+
config.status: creating util/cairo-sphinx/Makefile
|
399
|
+
config.status: creating util/cairo-trace/Makefile
|
400
|
+
config.status: creating util/cairo-trace/cairo-trace
|
401
|
+
config.status: creating doc/Makefile
|
402
|
+
config.status: creating doc/public/Makefile
|
403
|
+
config.status: creating config.h
|
404
|
+
config.status: executing depfiles commands
|
405
|
+
config.status: executing libtool commands
|
406
|
+
config.status: executing ./build/Makefile.win32.features commands
|
407
|
+
config.status: creating ./build/Makefile.win32.features
|
408
|
+
config.status: ./build/Makefile.win32.features is unchanged
|
409
|
+
config.status: executing ./src/Makefile.am.features commands
|
410
|
+
config.status: creating ./src/Makefile.am.features
|
411
|
+
config.status: ./src/Makefile.am.features is unchanged
|
412
|
+
config.status: executing ./src/Makefile.win32.features commands
|
413
|
+
config.status: creating ./src/Makefile.win32.features
|
414
|
+
config.status: ./src/Makefile.win32.features is unchanged
|
415
|
+
config.status: executing ./boilerplate/Makefile.am.features commands
|
416
|
+
config.status: creating ./boilerplate/Makefile.am.features
|
417
|
+
config.status: ./boilerplate/Makefile.am.features is unchanged
|
418
|
+
config.status: executing ./boilerplate/Makefile.win32.features commands
|
419
|
+
config.status: creating ./boilerplate/Makefile.win32.features
|
420
|
+
config.status: ./boilerplate/Makefile.win32.features is unchanged
|
421
|
+
config.status: executing src/cairo-features.h commands
|
422
|
+
config.status: creating src/cairo-features.h
|
423
|
+
config.status: executing src/cairo-supported-features.h commands
|
424
|
+
config.status: creating src/cairo-supported-features.h
|
425
|
+
config.status: executing ./build/Makefile.win32.features-h commands
|
426
|
+
config.status: creating ./build/Makefile.win32.features-h
|
427
|
+
config.status: ./build/Makefile.win32.features-h is unchanged
|
428
|
+
|
429
|
+
cairo (version 1.10.0 [release]) will be compiled with:
|
430
|
+
|
431
|
+
The following surface backends:
|
432
|
+
Image: yes (always builtin)
|
433
|
+
Meta: yes (always builtin)
|
434
|
+
Tee: yes (always builtin)
|
435
|
+
XML: no (disabled, use --enable-xml to enable)
|
436
|
+
Skia: no (disabled, use --enable-skia to enable)
|
437
|
+
Xlib: no (requires X development libraries)
|
438
|
+
Xlib Xrender: no (requires --enable-xlib)
|
439
|
+
Qt: no (disabled, use --enable-qt to enable)
|
440
|
+
Quartz: no (requires CoreGraphics framework)
|
441
|
+
Quartz-image: no (disabled, use --enable-quartz-image to enable)
|
442
|
+
XCB: no (disabled, use --enable-xcb to enable)
|
443
|
+
Win32: yes
|
444
|
+
OS2: no (disabled, use --enable-os2 to enable)
|
445
|
+
CairoScript: no (disabled, use --enable-script to enable)
|
446
|
+
PostScript: yes
|
447
|
+
PDF: yes
|
448
|
+
SVG: yes
|
449
|
+
OpenGL: no (disabled, use --enable-gl to enable)
|
450
|
+
BeOS: no (disabled, use --enable-beos to enable)
|
451
|
+
DirectFB: no (disabled, use --enable-directfb to enable)
|
452
|
+
OpenVG: no (disabled, use --enable-vg to enable)
|
453
|
+
DRM: no (disabled, use --enable-drm to enable)
|
454
|
+
|
455
|
+
The following font backends:
|
456
|
+
User: yes (always builtin)
|
457
|
+
FreeType: yes
|
458
|
+
Fontconfig: yes
|
459
|
+
Win32: yes
|
460
|
+
Quartz: no (requires CoreGraphics framework)
|
461
|
+
|
462
|
+
The following functions:
|
463
|
+
PNG functions: yes
|
464
|
+
GLEW functions: no (not required by any backend)
|
465
|
+
GLX functions: no (not required by any backend)
|
466
|
+
WGL functions: no (not required by any backend)
|
467
|
+
EGL functions: no (not required by any backend)
|
468
|
+
X11-xcb functions: no (disabled, use --enable-xlib-xcb to enable)
|
469
|
+
XCB-drm functions: no (disabled, use --enable-xcb-drm to enable)
|
470
|
+
XCB-shm functions: no (requires both --enable-xcb)
|
471
|
+
DRM-Xr functions: no (disabled, use --enable-drm-xr to enable)
|
472
|
+
|
473
|
+
The following features and utilities:
|
474
|
+
cairo-trace: no (requires dynamic linker and zlib and real pthreads)
|
475
|
+
cairo-script-interpreter: yes
|
476
|
+
|
477
|
+
And the following internal features:
|
478
|
+
pthread: no (can't link with -lpthread or -pthread)
|
479
|
+
gtk-doc: no
|
480
|
+
gcov support: no
|
481
|
+
symbol-lookup: no (requires bfd)
|
482
|
+
test surfaces: no (disabled, use --enable-test-surfaces to enable)
|
483
|
+
ps testing: no (requires libspectre)
|
484
|
+
pdf testing: no (requires poppler-glib >= 0.13.3)
|
485
|
+
svg testing: no (requires librsvg-2.0 >= 2.15.0)
|
486
|
+
win32 printing testing: no (requires ghostscript)
|
487
|
+
|
488
|
+
|
489
|
+
++ make -j3 zips
|
490
|
+
make install-recursive
|
491
|
+
make[1]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
492
|
+
Making install in src
|
493
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
494
|
+
make install-am
|
495
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
496
|
+
CC cairo-analysis-surface.lo
|
497
|
+
CC cairo-arc.lo
|
498
|
+
CC cairo-array.lo
|
499
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_merge_status':
|
500
|
+
cairo-analysis-surface.c:69:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
501
|
+
cairo-analysis-surface.c:69:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
502
|
+
cairo-analysis-surface.c:70:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
503
|
+
cairo-analysis-surface.c:70:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
504
|
+
cairo-analysis-surface.c:90:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
505
|
+
cairo-analysis-surface.c:90:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
506
|
+
cairo-analysis-surface.c: In function '_add_operation':
|
507
|
+
cairo-analysis-surface.c:146:21: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
508
|
+
cairo-analysis-surface.c:174:22: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
509
|
+
cairo-analysis-surface.c:222:24: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
510
|
+
cairo-analysis-surface.c:243:16: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
511
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_paint':
|
512
|
+
cairo-analysis-surface.c:326:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
513
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_mask':
|
514
|
+
cairo-analysis-surface.c:354:6: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
515
|
+
cairo-analysis-surface.c:354:6: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
516
|
+
cairo-analysis-surface.c:367:7: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
517
|
+
cairo-analysis-surface.c:367:7: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
518
|
+
cairo-analysis-surface.c:377:7: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
519
|
+
cairo-analysis-surface.c:377:7: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
520
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_stroke':
|
521
|
+
cairo-analysis-surface.c:432:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
522
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_fill':
|
523
|
+
cairo-analysis-surface.c:496:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
524
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_show_glyphs':
|
525
|
+
cairo-analysis-surface.c:568:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
526
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_show_text_glyphs':
|
527
|
+
cairo-analysis-surface.c:632:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
528
|
+
cairo-analysis-surface.c:652:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
529
|
+
CC cairo-atomic.lo
|
530
|
+
CC cairo-base64-stream.lo
|
531
|
+
CC cairo-base85-stream.lo
|
532
|
+
CC cairo-bentley-ottmann.lo
|
533
|
+
CC cairo-bentley-ottmann-rectangular.lo
|
534
|
+
CC cairo-bentley-ottmann-rectilinear.lo
|
535
|
+
CC cairo-botor-scan-converter.lo
|
536
|
+
CC cairo-boxes.lo
|
537
|
+
CC cairo.lo
|
538
|
+
cairo-botor-scan-converter.c: In function 'edges_compare_x_for_y':
|
539
|
+
cairo-botor-scan-converter.c:459:13: warning: 'ax' may be used uninitialized in this function
|
540
|
+
cairo-botor-scan-converter.c:459:17: warning: 'bx' may be used uninitialized in this function
|
541
|
+
CC cairo-cache.lo
|
542
|
+
CC cairo-clip.lo
|
543
|
+
CC cairo-color.lo
|
544
|
+
CC cairo-composite-rectangles.lo
|
545
|
+
cairo-clip.c: In function '_cairo_clip_path_to_region_geometric':
|
546
|
+
cairo-clip.c:595:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
547
|
+
cairo-clip.c:626:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
548
|
+
CC cairo-debug.lo
|
549
|
+
CC cairo-device.lo
|
550
|
+
CC cairo-fixed.lo
|
551
|
+
CC cairo-font-face.lo
|
552
|
+
cairo-device.c: In function '_cairo_device_set_error':
|
553
|
+
cairo-device.c:451:50: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
554
|
+
CC cairo-font-face-twin.lo
|
555
|
+
CC cairo-font-face-twin-data.lo
|
556
|
+
CC cairo-font-options.lo
|
557
|
+
CC cairo-freelist.lo
|
558
|
+
CC cairo-freed-pool.lo
|
559
|
+
CC cairo-gstate.lo
|
560
|
+
CC cairo-hash.lo
|
561
|
+
CC cairo-hull.lo
|
562
|
+
cairo-gstate.c: In function '_cairo_gstate_copy_clip_rectangle_list':
|
563
|
+
cairo-gstate.c:1565:31: warning: ignoring return value of '_cairo_clip_rectangle', declared with attribute warn_unused_result
|
564
|
+
CC cairo-image-info.lo
|
565
|
+
CC cairo-image-surface.lo
|
566
|
+
CC cairo-lzw.lo
|
567
|
+
cairo-image-surface.c: In function '_pixman_image_for_surface':
|
568
|
+
cairo-image-surface.c:1367:33: warning: comparison between 'cairo_surface_type_t' and 'enum _cairo_internal_surface_type'
|
569
|
+
cairo-image-surface.c: In function '_create_composite_mask_pattern':
|
570
|
+
cairo-image-surface.c:1904:2: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
571
|
+
cairo-image-surface.c:1906:29: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
572
|
+
cairo-image-surface.c: In function '_clip_and_composite':
|
573
|
+
cairo-image-surface.c:2233:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
574
|
+
cairo-image-surface.c:2238:29: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
575
|
+
cairo-image-surface.c: In function '_composite_boxes':
|
576
|
+
cairo-image-surface.c:2876:26: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
577
|
+
cairo-image-surface.c: In function '_clip_and_composite_boxes':
|
578
|
+
cairo-image-surface.c:3016:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
579
|
+
cairo-image-surface.c: In function '_clip_and_composite_trapezoids':
|
580
|
+
cairo-image-surface.c:3146:29: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
581
|
+
cairo-image-surface.c: In function '_cairo_image_surface_stroke':
|
582
|
+
cairo-image-surface.c:3620:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
583
|
+
CC cairo-matrix.lo
|
584
|
+
CC cairo-recording-surface.lo
|
585
|
+
cairo-recording-surface.c: In function '_cairo_recording_surface_get_path':
|
586
|
+
cairo-recording-surface.c:757:17: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
587
|
+
cairo-recording-surface.c: In function '_cairo_recording_surface_replay_internal':
|
588
|
+
cairo-recording-surface.c:951:17: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
589
|
+
cairo-recording-surface.c:957:3: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
590
|
+
cairo-recording-surface.c:957:3: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
591
|
+
CC cairo-misc.lo
|
592
|
+
CC cairo-mutex.lo
|
593
|
+
CC cairo-observer.lo
|
594
|
+
cairo-misc.c:44:1: warning: comparison between 'enum _cairo_status' and 'enum _cairo_int_status'
|
595
|
+
CC cairo-output-stream.lo
|
596
|
+
CC cairo-paginated-surface.lo
|
597
|
+
CC cairo-path-bounds.lo
|
598
|
+
cairo-paginated-surface.c: In function '_paint_page':
|
599
|
+
cairo-paginated-surface.c:367:2: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
600
|
+
CC cairo-path.lo
|
601
|
+
CC cairo-path-fill.lo
|
602
|
+
CC cairo-path-fixed.lo
|
603
|
+
CC cairo-path-in-fill.lo
|
604
|
+
CC cairo-path-stroke.lo
|
605
|
+
cairo-path-stroke.c: In function '_cairo_stroker_add_caps':
|
606
|
+
cairo-path-stroke.c:860:29: warning: comparison between 'cairo_line_cap_t' and 'enum _cairo_line_join'
|
607
|
+
CC cairo-pattern.lo
|
608
|
+
cairo-path-stroke.c: In function '_cairo_path_fixed_stroke_to_traps':
|
609
|
+
cairo-path-stroke.c:1407:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
610
|
+
CC cairo-pen.lo
|
611
|
+
CC cairo-polygon.lo
|
612
|
+
CC cairo-rectangle.lo
|
613
|
+
CC cairo-rectangular-scan-converter.lo
|
614
|
+
CC cairo-region.lo
|
615
|
+
CC cairo-rtree.lo
|
616
|
+
CC cairo-scaled-font.lo
|
617
|
+
CC cairo-slope.lo
|
618
|
+
CC cairo-spans.lo
|
619
|
+
cairo-scaled-font.c: In function 'cairo_scaled_font_text_to_glyphs':
|
620
|
+
cairo-scaled-font.c:1941:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
621
|
+
cairo-scaled-font.c: In function '_cairo_scaled_font_show_glyphs':
|
622
|
+
cairo-scaled-font.c:2219:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
623
|
+
cairo-scaled-font.c: In function '_cairo_scaled_font_glyph_path':
|
624
|
+
cairo-scaled-font.c:2494:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
625
|
+
cairo-scaled-font.c: In function '_cairo_scaled_glyph_lookup':
|
626
|
+
cairo-scaled-font.c:2848:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
627
|
+
CC cairo-spline.lo
|
628
|
+
CC cairo-stroke-style.lo
|
629
|
+
CC cairo-surface.lo
|
630
|
+
cairo-stroke-style.c: In function '_cairo_stroke_style_dash_stroked':
|
631
|
+
cairo-stroke-style.c:194:2: warning: cannot optimize loop, the loop counter may overflow
|
632
|
+
CC cairo-surface-fallback.lo
|
633
|
+
CC cairo-surface-clipper.lo
|
634
|
+
cairo-surface.c: In function '_cairo_surface_set_error':
|
635
|
+
cairo-surface.c:171:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
636
|
+
cairo-surface.c:174:50: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
637
|
+
cairo-surface.c: In function '_cairo_surface_clone_similar':
|
638
|
+
cairo-surface.c:1690:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
639
|
+
cairo-surface.c:1721:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
640
|
+
cairo-surface.c: In function '_cairo_surface_paint':
|
641
|
+
cairo-surface.c:2023:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
642
|
+
cairo-surface.c: In function '_cairo_surface_mask':
|
643
|
+
cairo-surface.c:2078:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
644
|
+
cairo-surface.c: In function '_cairo_surface_fill_stroke':
|
645
|
+
cairo-surface.c:2146:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
646
|
+
cairo-surface.c: In function '_cairo_surface_stroke':
|
647
|
+
cairo-surface.c:2211:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
648
|
+
cairo-surface.c: In function '_cairo_surface_fill':
|
649
|
+
cairo-surface.c:2266:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
650
|
+
cairo-surface.c: In function '_cairo_surface_show_text_glyphs':
|
651
|
+
cairo-surface.c:2621:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
652
|
+
cairo-surface.c:2633:17: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
653
|
+
cairo-surface.c:2648:17: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
654
|
+
cairo-surface.c:2669:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
655
|
+
cairo-surface-fallback.c: In function '_create_composite_mask_pattern':
|
656
|
+
cairo-surface-fallback.c:136:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
657
|
+
cairo-surface-fallback.c:142:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
658
|
+
cairo-surface-fallback.c: In function '_clip_and_composite_source':
|
659
|
+
cairo-surface-fallback.c:351:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
660
|
+
cairo-surface-fallback.c: In function '_clip_and_composite':
|
661
|
+
cairo-surface-fallback.c:450:10: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
662
|
+
cairo-surface-fallback.c:456:28: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
663
|
+
cairo-surface-fallback.c: In function '_clip_and_composite_trapezoids':
|
664
|
+
cairo-surface-fallback.c:792:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
665
|
+
cairo-surface-fallback.c:795:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
666
|
+
cairo-surface-fallback.c:809:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
667
|
+
cairo-surface-fallback.c:813:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
668
|
+
cairo-surface-fallback.c:852:10: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
669
|
+
cairo-surface-fallback.c: In function '_cairo_surface_old_show_glyphs_draw_func':
|
670
|
+
cairo-surface-fallback.c:1282:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
671
|
+
CC cairo-surface-offset.lo
|
672
|
+
CC cairo-surface-snapshot.lo
|
673
|
+
CC cairo-surface-subsurface.lo
|
674
|
+
CC cairo-surface-wrapper.lo
|
675
|
+
CC cairo-system.lo
|
676
|
+
CC cairo-tor-scan-converter.lo
|
677
|
+
cairo-surface-wrapper.c: In function '_cairo_surface_wrapper_get_extents':
|
678
|
+
cairo-surface-wrapper.c:659:33: warning: ignoring return value of '_cairo_rectangle_intersect', declared with attribute warn_unused_result
|
679
|
+
CC cairo-toy-font-face.lo
|
680
|
+
CC cairo-traps.lo
|
681
|
+
CC cairo-unicode.lo
|
682
|
+
CC cairo-user-font.lo
|
683
|
+
CC cairo-version.lo
|
684
|
+
cairo-user-font.c: In function '_cairo_user_scaled_glyph_init':
|
685
|
+
cairo-user-font.c:161:17: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
686
|
+
cairo-user-font.c: In function '_cairo_user_text_to_glyphs':
|
687
|
+
cairo-user-font.c:331:13: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
688
|
+
cairo-user-font.c:332:13: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
689
|
+
cairo-user-font.c:335:13: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
690
|
+
CC cairo-wideint.lo
|
691
|
+
CC cairo-cff-subset.lo
|
692
|
+
CC cairo-scaled-font-subsets.lo
|
693
|
+
cairo-cff-subset.c: In function 'cairo_cff_font_write_fdselect':
|
694
|
+
cairo-cff-subset.c:1407:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
695
|
+
cairo-cff-subset.c:1411:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
696
|
+
cairo-cff-subset.c:1415:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
697
|
+
cairo-cff-subset.c:1419:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
698
|
+
cairo-cff-subset.c:1423:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
699
|
+
cairo-scaled-font-subsets.c: In function '_cairo_sub_font_map_glyph':
|
700
|
+
cairo-scaled-font-subsets.c:485:2: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
701
|
+
cairo-scaled-font-subsets.c: In function '_cairo_scaled_font_subsets_map_glyph':
|
702
|
+
cairo-scaled-font-subsets.c:702:17: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
703
|
+
cairo-scaled-font-subsets.c:717:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
704
|
+
CC cairo-truetype-subset.lo
|
705
|
+
CC cairo-type1-fallback.lo
|
706
|
+
cairo-truetype-subset.c: In function '_cairo_truetype_font_set_error':
|
707
|
+
cairo-truetype-subset.c:125:50: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
708
|
+
cairo-truetype-subset.c: In function 'cairo_truetype_font_create_truetype_table_list':
|
709
|
+
cairo-truetype-subset.c:1003:46: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
710
|
+
cairo-truetype-subset.c:1009:46: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
711
|
+
cairo-truetype-subset.c:1015:46: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
712
|
+
cairo-truetype-subset.c: In function '_cairo_truetype_index_to_ucs4':
|
713
|
+
cairo-truetype-subset.c:1314:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
714
|
+
CC cairo-type1-subset.lo
|
715
|
+
cairo-type1-fallback.c: In function 'cairo_type1_font_write_private_dict':
|
716
|
+
cairo-type1-fallback.c:615:16: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
717
|
+
CC cairo-type3-glyph-surface.lo
|
718
|
+
CC cairo-pdf-operators.lo
|
719
|
+
cairo-type3-glyph-surface.c: In function '_cairo_type3_glyph_surface_analyze_glyph':
|
720
|
+
cairo-type3-glyph-surface.c:439:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
721
|
+
cairo-type3-glyph-surface.c:450:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
722
|
+
cairo-type3-glyph-surface.c: In function '_cairo_type3_glyph_surface_emit_glyph':
|
723
|
+
cairo-type3-glyph-surface.c:487:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
724
|
+
cairo-type3-glyph-surface.c:554:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
725
|
+
CC cairo-deflate-stream.lo
|
726
|
+
cairo-pdf-operators.c: In function '_cairo_pdf_operators_emit_stroke':
|
727
|
+
cairo-pdf-operators.c:770:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
728
|
+
CC cairo-win32-surface.lo
|
729
|
+
CC cairo-win32-printing-surface.lo
|
730
|
+
CC cairo-win32-font.lo
|
731
|
+
cairo-win32-surface.c: In function '_create_dc_and_bitmap':
|
732
|
+
cairo-win32-surface.c:202:5: warning: enumeration value 'CAIRO_FORMAT_RGB16_565' not handled in switch
|
733
|
+
cairo-win32-surface.c:236:5: warning: enumeration value 'CAIRO_FORMAT_INVALID' not handled in switch
|
734
|
+
cairo-win32-surface.c:236:5: warning: enumeration value 'CAIRO_FORMAT_RGB16_565' not handled in switch
|
735
|
+
cairo-win32-surface.c:312:2: warning: enumeration value 'CAIRO_FORMAT_INVALID' not handled in switch
|
736
|
+
cairo-win32-surface.c:312:2: warning: enumeration value 'CAIRO_FORMAT_RGB16_565' not handled in switch
|
737
|
+
cairo-win32-surface.c: In function '_cairo_win32_surface_composite':
|
738
|
+
cairo-win32-surface.c:1258:23: warning: comparison between signed and unsigned integer expressions
|
739
|
+
cairo-win32-surface.c:1264:45: warning: comparison between signed and unsigned integer expressions
|
740
|
+
cairo-win32-surface.c:1268:19: warning: comparison between signed and unsigned integer expressions
|
741
|
+
cairo-win32-surface.c:1274:40: warning: comparison between signed and unsigned integer expressions
|
742
|
+
cairo-win32-surface.c:1290:14: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
743
|
+
cairo-win32-surface.c:1311:16: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
744
|
+
cairo-win32-surface.c: In function 'categorize_solid_dest_operator':
|
745
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_MULTIPLY' not handled in switch
|
746
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_SCREEN' not handled in switch
|
747
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_OVERLAY' not handled in switch
|
748
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_DARKEN' not handled in switch
|
749
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_LIGHTEN' not handled in switch
|
750
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_COLOR_DODGE' not handled in switch
|
751
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_COLOR_BURN' not handled in switch
|
752
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HARD_LIGHT' not handled in switch
|
753
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_SOFT_LIGHT' not handled in switch
|
754
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_DIFFERENCE' not handled in switch
|
755
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_EXCLUSION' not handled in switch
|
756
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HSL_HUE' not handled in switch
|
757
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HSL_SATURATION' not handled in switch
|
758
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HSL_COLOR' not handled in switch
|
759
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HSL_LUMINOSITY' not handled in switch
|
760
|
+
cairo-win32-surface.c: In function '_cairo_win32_surface_show_glyphs':
|
761
|
+
cairo-win32-surface.c:1550:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
762
|
+
cairo-win32-surface.c: In function 'cairo_win32_surface_create':
|
763
|
+
cairo-win32-surface.c:1687:55: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
764
|
+
cairo-win32-surface.c: In function '_cairo_win32_surface_create_for_dc':
|
765
|
+
cairo-win32-surface.c:365:9: warning: 'rowstride' may be used uninitialized in this function
|
766
|
+
cairo-win32-surface.c:364:20: warning: 'bits' may be used uninitialized in this function
|
767
|
+
cairo-win32-printing-surface.c: In function '_cairo_win32_printing_surface_paint_recording_pattern':
|
768
|
+
cairo-win32-printing-surface.c:503:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
769
|
+
cairo-win32-printing-surface.c: In function '_cairo_win32_printing_surface_paint_image_pattern':
|
770
|
+
cairo-win32-printing-surface.c:653:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
771
|
+
cairo-win32-printing-surface.c: In function 'cairo_win32_printing_surface_create':
|
772
|
+
cairo-win32-printing-surface.c:1767:55: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
773
|
+
cairo-win32-font.c:712:1: warning: '_cairo_win32_scaled_font_text_to_glyphs' defined but not used
|
774
|
+
cairo-win32-printing-surface.c: In function '_cairo_win32_printing_surface_paint_image_pattern':
|
775
|
+
cairo-win32-printing-surface.c:614:19: warning: 'mime_size' may be used uninitialized in this function
|
776
|
+
cairo-win32-printing-surface.c:613:26: warning: 'mime_data' may be used uninitialized in this function
|
777
|
+
CC cairo-png.lo
|
778
|
+
cairo-win32-font.c: In function '_cairo_win32_scaled_font_select_unscaled_font':
|
779
|
+
cairo-win32-font.c:492:11: warning: 'hfont' may be used uninitialized in this function
|
780
|
+
cairo-png.c: In function 'write_png':
|
781
|
+
cairo-png.c:179:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
782
|
+
CC cairo-ft-font.lo
|
783
|
+
CC cairo-ps-surface.lo
|
784
|
+
CC cairo-pdf-surface.lo
|
785
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_header':
|
786
|
+
cairo-ps-surface.c:166:10: warning: unused variable 'ctime_buf'
|
787
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_unscaled_font_subset':
|
788
|
+
cairo-ps-surface.c:677:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
789
|
+
cairo-ps-surface.c:682:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
790
|
+
cairo-ps-surface.c:686:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
791
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_scaled_font_subset':
|
792
|
+
cairo-ps-surface.c:705:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
793
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_recording_surface':
|
794
|
+
cairo-ps-surface.c:2468:5: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
795
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_recording_subsurface':
|
796
|
+
cairo-ps-surface.c:2540:5: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
797
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_surface':
|
798
|
+
cairo-ps-surface.c:2723:17: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
799
|
+
cairo-pdf-surface.c: In function '_get_source_surface_size':
|
800
|
+
cairo-pdf-surface.c:1106:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
801
|
+
cairo-pdf-surface.c:1113:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
802
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_image_surface':
|
803
|
+
cairo-pdf-surface.c:2099:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
804
|
+
cairo-pdf-surface.c:2103:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
805
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_recording_surface':
|
806
|
+
cairo-pdf-surface.c:2269:5: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
807
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_recording_subsurface':
|
808
|
+
cairo-pdf-surface.c:2327:5: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
809
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_unscaled_font_subset':
|
810
|
+
cairo-pdf-surface.c:4651:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
811
|
+
cairo-pdf-surface.c:4655:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
812
|
+
cairo-pdf-surface.c:4659:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
813
|
+
cairo-pdf-surface.c:4664:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
814
|
+
cairo-pdf-surface.c:4669:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
815
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_scaled_font_subset':
|
816
|
+
cairo-pdf-surface.c:4686:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
817
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_paint':
|
818
|
+
cairo-pdf-surface.c:5405:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
819
|
+
cairo-pdf-surface.c:5451:9: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
820
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_mask':
|
821
|
+
cairo-pdf-surface.c:5520:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
822
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_stroke':
|
823
|
+
cairo-pdf-surface.c:5632:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
824
|
+
cairo-pdf-surface.c:5665:9: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
825
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_fill':
|
826
|
+
cairo-pdf-surface.c:5760:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
827
|
+
cairo-pdf-surface.c:5823:9: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
828
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_show_text_glyphs':
|
829
|
+
cairo-pdf-surface.c:6043:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
830
|
+
cairo-pdf-surface.c:6063:9: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
831
|
+
CC cairo-svg-surface.lo
|
832
|
+
Generating cairo.def
|
833
|
+
cairo-svg-surface.c: In function '_cairo_svg_document_emit_glyph':
|
834
|
+
cairo-svg-surface.c:834:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
835
|
+
cairo-svg-surface.c: In function '_cairo_surface_base64_encode':
|
836
|
+
cairo-svg-surface.c:1167:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
837
|
+
cairo-svg-surface.c:1171:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
838
|
+
cairo-svg-surface.c: In function '_cairo_svg_surface_show_glyphs':
|
839
|
+
cairo-svg-surface.c:2523:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
840
|
+
cairo-svg-surface.c: In function '_cairo_svg_surface_supports_fine_grained_fallbacks':
|
841
|
+
cairo-svg-surface.c:2838:19: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
842
|
+
CCLD libcairo.la
|
843
|
+
Creating library file: .libs/libcairo.dll.a
|
844
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
845
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib"
|
846
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo"
|
847
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo"
|
848
|
+
/bin/sh ../libtool --mode=install /opt/local/bin/install -c libcairo.la 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib'
|
849
|
+
/opt/local/bin/install -c -m 644 cairo.h cairo-deprecated.h cairo-win32.h cairo-ft.h cairo-ps.h cairo-pdf.h cairo-svg.h ../cairo-version.h 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo'
|
850
|
+
/opt/local/bin/install -c -m 644 cairo-features.h 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo'
|
851
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/pkgconfig" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/pkgconfig"
|
852
|
+
/opt/local/bin/install -c -m 644 cairo.pc cairo-win32.pc cairo-win32-font.pc cairo-png.pc cairo-ft.pc cairo-fc.pc cairo-ps.pc cairo-pdf.pc cairo-svg.pc cairo-gobject.pc 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/pkgconfig'
|
853
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo.dll.a c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo.dll.a
|
854
|
+
libtool: install: base_file=`basename libcairo.la`
|
855
|
+
libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libcairo.la'i; echo libcairo-2.dll'`
|
856
|
+
libtool: install: dldir=c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/`dirname ../bin/libcairo-2.dll`
|
857
|
+
libtool: install: test -d c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin || mkdir -p c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin
|
858
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-2.dll c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-2.dll
|
859
|
+
libtool: install: chmod a+x c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-2.dll
|
860
|
+
libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-2.dll' || exit 0; fi
|
861
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo.lai c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo.la
|
862
|
+
----------------------------------------------------------------------
|
863
|
+
Libraries have been installed in:
|
864
|
+
c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib
|
865
|
+
|
866
|
+
If you ever happen to want to link against installed libraries
|
867
|
+
in a given directory, LIBDIR, you must either use libtool, and
|
868
|
+
specify the full pathname of the library, or use the `-LLIBDIR'
|
869
|
+
flag during linking and do at least one of the following:
|
870
|
+
- add LIBDIR to the `PATH' environment variable
|
871
|
+
during execution
|
872
|
+
- add LIBDIR to the `LD_RUN_PATH' environment variable
|
873
|
+
during linking
|
874
|
+
- use the `-LLIBDIR' linker flag
|
875
|
+
|
876
|
+
See any operating system documentation about shared libraries for
|
877
|
+
more information, such as the ld(1) and ld.so(8) manual pages.
|
878
|
+
----------------------------------------------------------------------
|
879
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
880
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
881
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
882
|
+
Making install in doc
|
883
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
884
|
+
make install-recursive
|
885
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
886
|
+
Making install in public
|
887
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
888
|
+
make install-am
|
889
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
890
|
+
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
891
|
+
make[6]: Nothing to be done for `install-exec-am'.
|
892
|
+
installfiles=`echo ./html/*`; \
|
893
|
+
if test "$installfiles" = './html/*'; \
|
894
|
+
then echo '-- Nothing to install' ; \
|
895
|
+
else \
|
896
|
+
/bin/sh /devel/src/freedesktop/cairo/1.10.0-1_win32/build/install-sh -d c:/devel/target/94d7ecd65464faa6be24937a758e580f/share/gtk-doc/html/cairo; \
|
897
|
+
for i in $installfiles; do \
|
898
|
+
echo '-- Installing '$i ; \
|
899
|
+
/opt/local/bin/install -c -m 644 $i c:/devel/target/94d7ecd65464faa6be24937a758e580f/share/gtk-doc/html/cairo; \
|
900
|
+
done; \
|
901
|
+
echo '-- Installing ./html/index.sgml' ; \
|
902
|
+
/opt/local/bin/install -c -m 644 ./html/index.sgml c:/devel/target/94d7ecd65464faa6be24937a758e580f/share/gtk-doc/html/cairo || :; \
|
903
|
+
which gtkdoc-rebase >/dev/null && \
|
904
|
+
gtkdoc-rebase --relative --dest-dir= --html-dir=c:/devel/target/94d7ecd65464faa6be24937a758e580f/share/gtk-doc/html/cairo ; \
|
905
|
+
fi
|
906
|
+
-- Installing ./html/bindings-errors.html
|
907
|
+
-- Installing ./html/bindings-fonts.html
|
908
|
+
-- Installing ./html/bindings-memory.html
|
909
|
+
-- Installing ./html/bindings-overloading.html
|
910
|
+
-- Installing ./html/bindings-path.html
|
911
|
+
-- Installing ./html/bindings-patterns.html
|
912
|
+
-- Installing ./html/bindings-return-values.html
|
913
|
+
-- Installing ./html/bindings-streams.html
|
914
|
+
-- Installing ./html/bindings-surfaces.html
|
915
|
+
-- Installing ./html/cairo-Error-handling.html
|
916
|
+
-- Installing ./html/cairo-FreeType-Fonts.html
|
917
|
+
-- Installing ./html/cairo-Image-Surfaces.html
|
918
|
+
-- Installing ./html/cairo-PDF-Surfaces.html
|
919
|
+
-- Installing ./html/cairo-PNG-Support.html
|
920
|
+
-- Installing ./html/cairo-Paths.html
|
921
|
+
-- Installing ./html/cairo-PostScript-Surfaces.html
|
922
|
+
-- Installing ./html/cairo-Quartz-(CGFont)-Fonts.html
|
923
|
+
-- Installing ./html/cairo-Quartz-Surfaces.html
|
924
|
+
-- Installing ./html/cairo-Regions.html
|
925
|
+
-- Installing ./html/cairo-SVG-Surfaces.html
|
926
|
+
-- Installing ./html/cairo-Transformations.html
|
927
|
+
-- Installing ./html/cairo-Types.html
|
928
|
+
-- Installing ./html/cairo-User-Fonts.html
|
929
|
+
-- Installing ./html/cairo-Version-Information.html
|
930
|
+
-- Installing ./html/cairo-Win32-Fonts.html
|
931
|
+
-- Installing ./html/cairo-Win32-Surfaces.html
|
932
|
+
-- Installing ./html/cairo-XLib-Surfaces.html
|
933
|
+
-- Installing ./html/cairo-cairo-device-t.html
|
934
|
+
-- Installing ./html/cairo-cairo-font-face-t.html
|
935
|
+
-- Installing ./html/cairo-cairo-font-options-t.html
|
936
|
+
-- Installing ./html/cairo-cairo-matrix-t.html
|
937
|
+
-- Installing ./html/cairo-cairo-pattern-t.html
|
938
|
+
-- Installing ./html/cairo-cairo-scaled-font-t.html
|
939
|
+
-- Installing ./html/cairo-cairo-surface-t.html
|
940
|
+
-- Installing ./html/cairo-cairo-t.html
|
941
|
+
-- Installing ./html/cairo-drawing.html
|
942
|
+
-- Installing ./html/cairo-fonts.html
|
943
|
+
-- Installing ./html/cairo-support.html
|
944
|
+
-- Installing ./html/cairo-surfaces.html
|
945
|
+
-- Installing ./html/cairo-text.html
|
946
|
+
-- Installing ./html/cairo.devhelp
|
947
|
+
-- Installing ./html/cairo.devhelp2
|
948
|
+
-- Installing ./html/home.png
|
949
|
+
-- Installing ./html/index-1.10.html
|
950
|
+
-- Installing ./html/index-1.2.html
|
951
|
+
-- Installing ./html/index-1.4.html
|
952
|
+
-- Installing ./html/index-1.6.html
|
953
|
+
-- Installing ./html/index-1.8.html
|
954
|
+
-- Installing ./html/index-all.html
|
955
|
+
-- Installing ./html/index.html
|
956
|
+
-- Installing ./html/index.sgml
|
957
|
+
-- Installing ./html/language-bindings.html
|
958
|
+
-- Installing ./html/left.png
|
959
|
+
-- Installing ./html/right.png
|
960
|
+
-- Installing ./html/style.css
|
961
|
+
-- Installing ./html/up.png
|
962
|
+
-- Installing ./html/index.sgml
|
963
|
+
which: gtkdoc-rebase: unknown command
|
964
|
+
make[6]: [install-data-local] Error 1 (ignored)
|
965
|
+
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
966
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
967
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
968
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
969
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
970
|
+
make[5]: Nothing to be done for `install-exec-am'.
|
971
|
+
make[5]: Nothing to be done for `install-data-am'.
|
972
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
973
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
974
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
975
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
976
|
+
Making install in util
|
977
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
978
|
+
make install-recursive
|
979
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
980
|
+
Making install in .
|
981
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
982
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
983
|
+
make[5]: Nothing to be done for `install-exec-am'.
|
984
|
+
make[5]: Nothing to be done for `install-data-am'.
|
985
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
986
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
987
|
+
Making install in cairo-gobject
|
988
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-gobject'
|
989
|
+
CC libcairo_gobject_la-cairo-gobject-enums.lo
|
990
|
+
CC libcairo_gobject_la-cairo-gobject-structs.lo
|
991
|
+
CCLD libcairo-gobject.la
|
992
|
+
|
993
|
+
*** Warning: linker path does not have real file for library -lintl.
|
994
|
+
*** I have the capability to make that library automatically link in when
|
995
|
+
*** you link to this library. But I can only do this if you have a
|
996
|
+
*** shared version of the library, which you do not appear to have
|
997
|
+
*** because I did check the linker path looking for a file starting
|
998
|
+
*** with libintl and none of the candidates passed a file format test
|
999
|
+
*** using a file magic. Last file checked: c:/devel/dist/win32/glib-2.24.2-2/lib/libglib-2.0.dll.a
|
1000
|
+
*** The inter-library dependencies that have been dropped here will be
|
1001
|
+
*** automatically added whenever a program is linked with this library
|
1002
|
+
*** or is declared to -dlopen it.
|
1003
|
+
|
1004
|
+
*** Since this library must not contain undefined symbols,
|
1005
|
+
*** because either the platform does not support them or
|
1006
|
+
*** it was explicitly requested with -no-undefined,
|
1007
|
+
*** libtool will only create a static version of it.
|
1008
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-gobject'
|
1009
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib"
|
1010
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo"
|
1011
|
+
/bin/sh ../../libtool --mode=install /opt/local/bin/install -c libcairo-gobject.la 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib'
|
1012
|
+
/opt/local/bin/install -c -m 644 cairo-gobject.h 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo'
|
1013
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-gobject.lai c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-gobject.la
|
1014
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-gobject.a c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-gobject.a
|
1015
|
+
libtool: install: chmod 644 c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-gobject.a
|
1016
|
+
libtool: install: ranlib c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-gobject.a
|
1017
|
+
----------------------------------------------------------------------
|
1018
|
+
Libraries have been installed in:
|
1019
|
+
c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib
|
1020
|
+
|
1021
|
+
If you ever happen to want to link against installed libraries
|
1022
|
+
in a given directory, LIBDIR, you must either use libtool, and
|
1023
|
+
specify the full pathname of the library, or use the `-LLIBDIR'
|
1024
|
+
flag during linking and do at least one of the following:
|
1025
|
+
- add LIBDIR to the `PATH' environment variable
|
1026
|
+
during execution
|
1027
|
+
- add LIBDIR to the `LD_RUN_PATH' environment variable
|
1028
|
+
during linking
|
1029
|
+
- use the `-LLIBDIR' linker flag
|
1030
|
+
|
1031
|
+
See any operating system documentation about shared libraries for
|
1032
|
+
more information, such as the ld(1) and ld.so(8) manual pages.
|
1033
|
+
----------------------------------------------------------------------
|
1034
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-gobject'
|
1035
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-gobject'
|
1036
|
+
Making install in cairo-script
|
1037
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1038
|
+
Making install in examples
|
1039
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script/examples'
|
1040
|
+
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script/examples'
|
1041
|
+
make[6]: Nothing to be done for `install-exec-am'.
|
1042
|
+
make[6]: Nothing to be done for `install-data-am'.
|
1043
|
+
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script/examples'
|
1044
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script/examples'
|
1045
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1046
|
+
CC libcairo_script_interpreter_la-cairo-script-file.lo
|
1047
|
+
CC libcairo_script_interpreter_la-cairo-script-hash.lo
|
1048
|
+
CC libcairo_script_interpreter_la-cairo-script-interpreter.lo
|
1049
|
+
cairo-script-interpreter.c: In function 'cairo_script_interpreter_finish':
|
1050
|
+
cairo-script-interpreter.c:636:23: warning: comparison between 'csi_status_t' and 'enum _cairo_status'
|
1051
|
+
CC libcairo_script_interpreter_la-cairo-script-objects.lo
|
1052
|
+
CC libcairo_script_interpreter_la-cairo-script-operators.lo
|
1053
|
+
CC libcairo_script_interpreter_la-cairo-script-scanner.lo
|
1054
|
+
cairo-script-operators.c: In function '_ft_create_for_pattern':
|
1055
|
+
cairo-script-operators.c:1863:21: warning: unused variable 'vec'
|
1056
|
+
CC libcairo_script_interpreter_la-cairo-script-stack.lo
|
1057
|
+
cairo-script-operators.c: In function 'end_array_construction':
|
1058
|
+
cairo-script-operators.c:600:2: warning: cannot optimize possibly infinite loops
|
1059
|
+
CCLD libcairo-script-interpreter.la
|
1060
|
+
Creating library file: .libs/libcairo-script-interpreter.dll.a
|
1061
|
+
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1062
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib"
|
1063
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo"
|
1064
|
+
/bin/sh ../../libtool --mode=install /opt/local/bin/install -c libcairo-script-interpreter.la 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib'
|
1065
|
+
/opt/local/bin/install -c -m 644 cairo-script-interpreter.h 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo'
|
1066
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-script-interpreter.dll.a c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-script-interpreter.dll.a
|
1067
|
+
libtool: install: base_file=`basename libcairo-script-interpreter.la`
|
1068
|
+
libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libcairo-script-interpreter.la'i; echo libcairo-script-interpreter-2.dll'`
|
1069
|
+
libtool: install: dldir=c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/`dirname ../bin/libcairo-script-interpreter-2.dll`
|
1070
|
+
libtool: install: test -d c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin || mkdir -p c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin
|
1071
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-script-interpreter-2.dll c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-script-interpreter-2.dll
|
1072
|
+
libtool: install: chmod a+x c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-script-interpreter-2.dll
|
1073
|
+
libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-script-interpreter-2.dll' || exit 0; fi
|
1074
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-script-interpreter.lai c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-script-interpreter.la
|
1075
|
+
----------------------------------------------------------------------
|
1076
|
+
Libraries have been installed in:
|
1077
|
+
c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib
|
1078
|
+
|
1079
|
+
If you ever happen to want to link against installed libraries
|
1080
|
+
in a given directory, LIBDIR, you must either use libtool, and
|
1081
|
+
specify the full pathname of the library, or use the `-LLIBDIR'
|
1082
|
+
flag during linking and do at least one of the following:
|
1083
|
+
- add LIBDIR to the `PATH' environment variable
|
1084
|
+
during execution
|
1085
|
+
- add LIBDIR to the `LD_RUN_PATH' environment variable
|
1086
|
+
during linking
|
1087
|
+
- use the `-LLIBDIR' linker flag
|
1088
|
+
|
1089
|
+
See any operating system documentation about shared libraries for
|
1090
|
+
more information, such as the ld(1) and ld.so(8) manual pages.
|
1091
|
+
----------------------------------------------------------------------
|
1092
|
+
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1093
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1094
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1095
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
1096
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
1097
|
+
Making install in boilerplate
|
1098
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1099
|
+
(cd . && sh ./make-cairo-boilerplate-constructors.sh cairo-boilerplate-getopt.c cairo-boilerplate-system.c cairo-boilerplate.c cairo-boilerplate-win32.c cairo-boilerplate-win32-printing.c cairo-boilerplate-ps.c cairo-boilerplate-pdf.c cairo-boilerplate-svg.c ) > cairo-boilerplate-constructors.c
|
1100
|
+
make install-am
|
1101
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1102
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1103
|
+
make[4]: Nothing to be done for `install-exec-am'.
|
1104
|
+
make[4]: Nothing to be done for `install-data-am'.
|
1105
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1106
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1107
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1108
|
+
Making install in test
|
1109
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1110
|
+
(cd . && sh ./make-cairo-test-constructors.sh a1-bug.c a1-image-sample.c a1-mask.c a1-mask-sample.c a1-traps-sample.c a1-rasterisation.c a8-mask.c aliasing.c alpha-similar.c api-special-cases.c big-line.c big-trap.c bilevel-image.c bug-bo-rectangular.c bug-seams.c caps.c caps-joins.c caps-joins-alpha.c caps-joins-curve.c caps-sub-paths.c clear.c clear-source.c clip-all.c clip-contexts.c clip-disjoint.c clip-device-offset.c clip-draw-unbounded.c clip-empty.c clip-empty-group.c clip-empty-save.c clip-fill.c clip-fill-no-op.c clip-fill-rule.c clip-fill-rule-pixel-aligned.c clip-group-shapes.c clip-image.c clip-nesting.c clip-operator.c clip-push-group.c clip-shape.c clip-stroke.c clip-stroke-no-op.c clip-text.c clip-twice.c clip-twice-rectangle.c clip-unbounded.c clip-zero.c clipped-group.c clipped-surface.c close-path.c close-path-current-point.c composite-integer-translate-source.c composite-integer-translate-over.c composite-integer-translate-over-repeat.c copy-path.c coverage.c create-for-stream.c create-from-png.c create-from-png-stream.c culled-glyphs.c curve-to-as-line-to.c dash-caps-joins.c dash-curve.c dash-infinite-loop.c dash-no-dash.c dash-offset.c dash-offset-negative.c dash-scale.c dash-state.c dash-zero-length.c degenerate-arc.c degenerate-arcs.c degenerate-curve-to.c degenerate-dash.c degenerate-linear-gradient.c degenerate-path.c degenerate-pen.c degenerate-radial-gradient.c degenerate-rel-curve-to.c device-offset.c device-offset-fractional.c device-offset-positive.c device-offset-scale.c error-setters.c extend-pad.c extend-pad-border.c extend-pad-similar.c extend-reflect.c extend-reflect-similar.c extend-repeat.c extend-repeat-similar.c extended-blend.c extended-blend-alpha.c fill-alpha.c fill-alpha-pattern.c fill-and-stroke.c fill-and-stroke-alpha.c fill-and-stroke-alpha-add.c fill-degenerate-sort-order.c fill-empty.c fill-image.c fill-missed-stop.c fill-rule.c filter-bilinear-extents.c filter-nearest-offset.c filter-nearest-transformed.c finer-grained-fallbacks.c font-face-get-type.c font-matrix-translation.c font-options.c glyph-cache-pressure.c get-and-set.c get-clip.c get-group-target.c get-path-extents.c gradient-alpha.c gradient-constant-alpha.c gradient-zero-stops.c gradient-zero-stops-mask.c group-clip.c group-paint.c group-unaligned.c half-coverage.c halo.c huge-linear.c huge-radial.c image-surface-source.c implicit-close.c infinite-join.c in-fill-empty-trapezoid.c in-fill-trapezoid.c invalid-matrix.c inverse-text.c joins.c large-clip.c large-font.c large-source.c large-source-roi.c large-twin-antialias-mixed.c leaky-dash.c leaky-dashed-rectangle.c leaky-dashed-stroke.c leaky-polygon.c line-width.c line-width-scale.c line-width-zero.c linear-gradient.c linear-gradient-extend.c linear-gradient-large.c linear-gradient-one-stop.c linear-gradient-reflect.c linear-gradient-subset.c linear-step-function.c linear-uniform.c long-dashed-lines.c long-lines.c mask.c mask-alpha.c mask-ctm.c mask-glyphs.c mask-surface-ctm.c mask-transformed-image.c mask-transformed-similar.c recording-surface-pattern.c mime-data.c miter-precision.c move-to-show-surface.c new-sub-path.c nil-surface.c operator.c operator-alpha.c operator-alpha-alpha.c operator-clear.c operator-source.c over-above-source.c over-around-source.c over-below-source.c over-between-source.c overlapping-glyphs.c paint.c paint-repeat.c paint-source-alpha.c paint-with-alpha.c partial-clip-text.c partial-coverage.c path-append.c path-stroke-twice.c path-precision.c pattern-get-type.c pattern-getters.c pixman-rotate.c png.c push-group.c push-group-color.c push-group-path-offset.c radial-gradient.c radial-gradient-extend.c radial-gradient-mask.c radial-gradient-mask-source.c radial-gradient-one-stop.c radial-gradient-source.c random-intersections-eo.c random-intersections-nonzero.c random-intersections-curves-eo.c random-intersections-curves-nz.c rectangle-rounding-error.c rectilinear-fill.c rectilinear-miter-limit.c rectilinear-dash.c rectilinear-stroke.c reflected-stroke.c rel-path.c rgb24-ignore-alpha.c rotate-image-surface-paint.c rotated-clip.c rounded-rectangle-fill.c rounded-rectangle-stroke.c scale-down-source-surface-paint.c scale-offset-image.c scale-offset-similar.c scale-source-surface-paint.c scaled-font-zero-matrix.c stroke-ctm-caps.c stroke-image.c select-font-face.c select-font-no-show-text.c self-copy.c self-copy-overlap.c self-intersecting.c set-source.c show-glyphs-many.c show-text-current-point.c skew-extreme.c smask.c smask-fill.c smask-image-mask.c smask-mask.c smask-paint.c smask-stroke.c smask-text.c solid-pattern-cache-stress.c source-clip.c source-clip-scale.c source-surface-scale-paint.c spline-decomposition.c subsurface.c subsurface-image-repeat.c subsurface-repeat.c subsurface-reflect.c subsurface-pad.c subsurface-modify-child.c subsurface-modify-parent.c subsurface-outside-target.c subsurface-similar-repeat.c surface-finish-twice.c surface-pattern.c surface-pattern-big-scale-down.c surface-pattern-operator.c surface-pattern-scale-down.c surface-pattern-scale-down-extend.c surface-pattern-scale-up.c text-antialias-gray.c text-antialias-none.c text-antialias-subpixel.c text-cache-crash.c text-glyph-range.c text-pattern.c text-rotate.c text-transform.c text-zero-len.c toy-font-face.c transforms.c translate-show-surface.c trap-clip.c twin.c twin-antialias-gray.c twin-antialias-mixed.c twin-antialias-none.c twin-antialias-subpixel.c unantialiased-shapes.c unbounded-operator.c user-data.c user-font.c user-font-mask.c user-font-proxy.c user-font-rescale.c xcomposite-projection.c xlib-expose-event.c zero-alpha.c zero-mask.c bitmap-font.c ft-font-create-for-ft-face.c ft-show-glyphs-positioning.c ft-show-glyphs-table.c ft-text-vertical-layout-type1.c ft-text-vertical-layout-type3.c ft-text-antialias-none.c pdf-features.c pdf-mime-data.c pdf-surface-source.c ps-eps.c ps-features.c ps-surface-source.c svg-surface.c svg-clip.c svg-surface-source.c multi-page.c ) > cairo-test-constructors.c
|
1111
|
+
make install-recursive
|
1112
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1113
|
+
Making install in pdiff
|
1114
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1115
|
+
make install-am
|
1116
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1117
|
+
CC lpyramid.lo
|
1118
|
+
CC pdiff.lo
|
1119
|
+
CCLD libpdiff.la
|
1120
|
+
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1121
|
+
make[6]: Nothing to be done for `install-exec-am'.
|
1122
|
+
make[6]: Nothing to be done for `install-data-am'.
|
1123
|
+
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1124
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1125
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1126
|
+
Making install in .
|
1127
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1128
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1129
|
+
make[5]: Nothing to be done for `install-exec-am'.
|
1130
|
+
make[5]: Nothing to be done for `install-data-am'.
|
1131
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1132
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1133
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1134
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1135
|
+
Making install in perf
|
1136
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1137
|
+
make install-am
|
1138
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1139
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1140
|
+
make[4]: Nothing to be done for `install-exec-am'.
|
1141
|
+
make[4]: Nothing to be done for `install-data-am'.
|
1142
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1143
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1144
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1145
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1146
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1147
|
+
make[3]: Nothing to be done for `install-exec-am'.
|
1148
|
+
make[3]: Nothing to be done for `install-data-am'.
|
1149
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1150
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1151
|
+
make[1]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1152
|
+
rm -f cairo-1.10.0.zip
|
1153
|
+
rm -f cairo-dev-1.10.0.zip
|
1154
|
+
pwd=`pwd`; cd c:/devel/target/94d7ecd65464faa6be24937a758e580f; \
|
1155
|
+
zip "$pwd"/cairo-1.10.0.zip bin/libcairo-2.dll
|
1156
|
+
pwd=`pwd`; cd c:/devel/target/94d7ecd65464faa6be24937a758e580f; \
|
1157
|
+
zip -r "$pwd"/cairo-dev-1.10.0.zip include/cairo lib/libcairo.dll.a lib/cairo.lib lib/pkgconfig/cairo.pc lib/pkgconfig/cairo-*.pc share/gtk-doc/html/cairo
|
1158
|
+
adding: bin/libcairo-2.dll adding: include/cairo/ (200 bytes security) (stored 0%)
|
1159
|
+
adding: include/cairo/cairo-deprecated.h (200 bytes security) (deflated 74%)
|
1160
|
+
adding: include/cairo/cairo-features.h (200 bytes security) (deflated 70%)
|
1161
|
+
adding: include/cairo/cairo-ft.h (200 bytes security) (deflated 56%)
|
1162
|
+
adding: include/cairo/cairo-gobject.h (200 bytes security) (deflated 75%)
|
1163
|
+
adding: include/cairo/cairo-pdf.h (200 bytes security) (deflated 59%)
|
1164
|
+
adding: include/cairo/cairo-ps.h (200 bytes security) (deflated 62%)
|
1165
|
+
adding: include/cairo/cairo-script-interpreter.h (200 bytes security) (deflated 66%)
|
1166
|
+
adding: include/cairo/cairo-svg.h (200 bytes security) (deflated 57%)
|
1167
|
+
adding: include/cairo/cairo-version.h (200 bytes security) (deflated 56%)
|
1168
|
+
adding: include/cairo/cairo-win32.h (200 bytes security) (deflated 65%)
|
1169
|
+
adding: include/cairo/cairo.h (200 bytes security) (deflated 77%)
|
1170
|
+
adding: lib/libcairo.dll.a (200 bytes security) (deflated 94%)
|
1171
|
+
adding: lib/pkgconfig/cairo.pc (200 bytes security) (deflated 32%)
|
1172
|
+
adding: lib/pkgconfig/cairo-fc.pc (200 bytes security) (deflated 30%)
|
1173
|
+
adding: lib/pkgconfig/cairo-ft.pc (200 bytes security) (deflated 28%)
|
1174
|
+
adding: lib/pkgconfig/cairo-gobject.pc (200 bytes security) (deflated 34%)
|
1175
|
+
adding: lib/pkgconfig/cairo-pdf.pc (200 bytes security) (deflated 28%)
|
1176
|
+
adding: lib/pkgconfig/cairo-png.pc (200 bytes security) (deflated 29%)
|
1177
|
+
adding: lib/pkgconfig/cairo-ps.pc (200 bytes security) (deflated 29%)
|
1178
|
+
adding: lib/pkgconfig/cairo-svg.pc (200 bytes security) (deflated 29%)
|
1179
|
+
adding: lib/pkgconfig/cairo-win32-font.pc (200 bytes security) (deflated 30%)
|
1180
|
+
adding: lib/pkgconfig/cairo-win32.pc (200 bytes security) (deflated 29%)
|
1181
|
+
adding: share/gtk-doc/html/cairo/ (200 bytes security) (stored 0%)
|
1182
|
+
adding: share/gtk-doc/html/cairo/bindings-errors.html (200 bytes security) (deflated 60%)
|
1183
|
+
adding: share/gtk-doc/html/cairo/bindings-fonts.html (200 bytes security) (deflated 60%)
|
1184
|
+
adding: share/gtk-doc/html/cairo/bindings-memory.html (200 bytes security) (deflated 63%)
|
1185
|
+
adding: share/gtk-doc/html/cairo/bindings-overloading.html (200 bytes security) (deflated 65%)
|
1186
|
+
adding: share/gtk-doc/html/cairo/bindings-path.html (200 bytes security) (deflated 64%)
|
1187
|
+
adding: share/gtk-doc/html/cairo/bindings-patterns.html (200 bytes security) (deflated 72%)
|
1188
|
+
adding: share/gtk-doc/html/cairo/bindings-return-values.html (200 bytes security) (deflated 63%)
|
1189
|
+
adding: share/gtk-doc/html/cairo/bindings-streams.html (200 bytes security) (deflated 60%)
|
1190
|
+
adding: share/gtk-doc/html/cairo/bindings-surfaces.html (200 bytes security) (deflated 62%)
|
1191
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-device-t.html (200 bytes security) (deflated 86%)
|
1192
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html (200 bytes security) (deflated 86%)
|
1193
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html (200 bytes security) (deflated 89%)
|
1194
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html (200 bytes security) (deflated 90%)
|
1195
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html (200 bytes security) (deflated 91%)
|
1196
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html (200 bytes security) (deflated 90%)
|
1197
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-surface-t.html (200 bytes security) (deflated 88%)
|
1198
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-t.html (200 bytes security) (deflated 89%)
|
1199
|
+
adding: share/gtk-doc/html/cairo/cairo-drawing.html (200 bytes security) (deflated 65%)
|
1200
|
+
adding: share/gtk-doc/html/cairo/cairo-Error-handling.html (200 bytes security) (deflated 78%)
|
1201
|
+
adding: share/gtk-doc/html/cairo/cairo-fonts.html (200 bytes security) (deflated 67%)
|
1202
|
+
adding: share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html (200 bytes security) (deflated 83%)
|
1203
|
+
adding: share/gtk-doc/html/cairo/cairo-Image-Surfaces.html (200 bytes security) (deflated 84%)
|
1204
|
+
adding: share/gtk-doc/html/cairo/cairo-Paths.html (200 bytes security) (deflated 89%)
|
1205
|
+
adding: share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html (200 bytes security) (deflated 85%)
|
1206
|
+
adding: share/gtk-doc/html/cairo/cairo-PNG-Support.html (200 bytes security) (deflated 86%)
|
1207
|
+
adding: share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html (200 bytes security) (deflated 87%)
|
1208
|
+
adding: share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html (200 bytes security) (deflated 78%)
|
1209
|
+
adding: share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html (200 bytes security) (deflated 79%)
|
1210
|
+
adding: share/gtk-doc/html/cairo/cairo-Regions.html (200 bytes security) (deflated 93%)
|
1211
|
+
adding: share/gtk-doc/html/cairo/cairo-support.html (200 bytes security) (deflated 62%)
|
1212
|
+
adding: share/gtk-doc/html/cairo/cairo-surfaces.html (200 bytes security) (deflated 70%)
|
1213
|
+
adding: share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html (200 bytes security) (deflated 83%)
|
1214
|
+
adding: share/gtk-doc/html/cairo/cairo-text.html (200 bytes security) (deflated 88%)
|
1215
|
+
adding: share/gtk-doc/html/cairo/cairo-Transformations.html (200 bytes security) (deflated 89%)
|
1216
|
+
adding: share/gtk-doc/html/cairo/cairo-Types.html (200 bytes security) (deflated 73%)
|
1217
|
+
adding: share/gtk-doc/html/cairo/cairo-User-Fonts.html (200 bytes security) (deflated 88%)
|
1218
|
+
adding: share/gtk-doc/html/cairo/cairo-Version-Information.html (200 bytes security) (deflated 84%)
|
1219
|
+
adding: share/gtk-doc/html/cairo/cairo-Win32-Fonts.html (200 bytes security) (deflated 87%)
|
1220
|
+
adding: share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html (200 bytes security) (deflated 85%)
|
1221
|
+
adding: share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html (200 bytes security) (deflated 87%)
|
1222
|
+
adding: share/gtk-doc/html/cairo/cairo.devhelp (200 bytes security) (deflated 88%)
|
1223
|
+
adding: share/gtk-doc/html/cairo/cairo.devhelp2 (200 bytes security) (deflated 58%)
|
1224
|
+
(200 bytes security) (deflated 89%)
|
1225
|
+
adding: share/gtk-doc/html/cairo/home.png (200 bytes security) (stored 0%)
|
1226
|
+
adding: share/gtk-doc/html/cairo/index-1.10.html (200 bytes security) (deflated 82%)
|
1227
|
+
adding: share/gtk-doc/html/cairo/index-1.2.html (200 bytes security) (deflated 82%)
|
1228
|
+
adding: share/gtk-doc/html/cairo/index-1.4.html (200 bytes security) (deflated 80%)
|
1229
|
+
adding: share/gtk-doc/html/cairo/index-1.6.html (200 bytes security) (deflated 73%)
|
1230
|
+
adding: share/gtk-doc/html/cairo/index-1.8.html (200 bytes security) (deflated 81%)
|
1231
|
+
adding: share/gtk-doc/html/cairo/index-all.html (200 bytes security) (deflated 89%)
|
1232
|
+
adding: share/gtk-doc/html/cairo/index.html (200 bytes security) (deflated 78%)
|
1233
|
+
adding: share/gtk-doc/html/cairo/index.sgml (200 bytes security) (deflated 90%)
|
1234
|
+
adding: share/gtk-doc/html/cairo/language-bindings.html (200 bytes security) (deflated 60%)
|
1235
|
+
adding: share/gtk-doc/html/cairo/left.png (200 bytes security) (stored 0%)
|
1236
|
+
adding: share/gtk-doc/html/cairo/right.png (200 bytes security) (stored 0%)
|
1237
|
+
adding: share/gtk-doc/html/cairo/style.css (200 bytes security) (deflated 71%)
|
1238
|
+
adding: share/gtk-doc/html/cairo/up.png (200 bytes security) (stored 0%)
|
1239
|
+
zip warning: name not matched: lib/cairo.lib
|
1240
|
+
++ cp cairo-1.10.0.zip /tmp/cairo_1.10.0-1_win32.zip
|
1241
|
+
++ cp cairo-dev-1.10.0.zip /tmp/cairo-dev_1.10.0-1_win32.zip
|
1242
|
+
++ cp -p src/cairo.def /devel/target/94d7ecd65464faa6be24937a758e580f/lib
|
1243
|
+
++ mkdir -p /devel/target/94d7ecd65464faa6be24937a758e580f/share/doc/cairo_1.10.0-1_win32
|
1244
|
+
++ cp -p COPYING COPYING-LGPL-2.1 COPYING-MPL-1.1 /devel/target/94d7ecd65464faa6be24937a758e580f/share/doc/cairo_1.10.0-1_win32
|
1245
|
+
++ cd /devel/target/94d7ecd65464faa6be24937a758e580f
|
1246
|
+
++ cd lib
|
1247
|
+
++ lib.exe -machine:X86 -def:cairo.def -out:cairo.lib
|
1248
|
+
Microsoft (R) Library Manager Version 6.00.8447
|
1249
|
+
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
|
1250
|
+
|
1251
|
+
Creating library cairo.lib and object cairo.exp
|
1252
|
+
++ zip /tmp/cairo-dev_1.10.0-1_win32.zip lib/cairo.def lib/cairo.lib
|
1253
|
+
adding: lib/cairo.def (200 bytes security) (deflated 80%)
|
1254
|
+
adding: lib/cairo.lib (200 bytes security) (deflated 88%)
|
1255
|
+
++ zip -r -D /tmp/cairo_1.10.0-1_win32.zip share/doc/cairo_1.10.0-1_win32
|
1256
|
+
adding: share/doc/cairo_1.10.0-1_win32/COPYING (200 bytes security) (deflated 55%)
|
1257
|
+
adding: share/doc/cairo_1.10.0-1_win32/COPYING-LGPL-2.1 (200 bytes security) (deflated 65%)
|
1258
|
+
adding: share/doc/cairo_1.10.0-1_win32/COPYING-MPL-1.1 (200 bytes security) (deflated 68%)
|
1259
|
+
++ sed -e 's/ pixman-1 >= 0.18.4//'
|
1260
|
+
++ mv lib/pkgconfig/cairo.pc.temp lib/pkgconfig/cairo.pc
|
1261
|
+
++ zip /tmp/cairo-dev_1.10.0-1_win32.zip lib/pkgconfig/cairo.pc
|
1262
|
+
updating: lib/pkgconfig/cairo.pc (200 bytes security) (deflated 33%)
|