cairo 1.14.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of cairo might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/AUTHORS +7 -0
- data/COPYING +59 -0
- data/GPL +340 -0
- data/Gemfile +5 -0
- data/NEWS +429 -0
- data/README.rdoc +120 -0
- data/Rakefile +620 -0
- data/ext/cairo/cairo.def +140 -0
- data/ext/cairo/depend +3 -0
- data/ext/cairo/extconf.rb +202 -0
- data/ext/cairo/rb_cairo.c +111 -0
- data/ext/cairo/rb_cairo.h +348 -0
- data/ext/cairo/rb_cairo_constants.c +673 -0
- data/ext/cairo/rb_cairo_context.c +1741 -0
- data/ext/cairo/rb_cairo_device.c +475 -0
- data/ext/cairo/rb_cairo_exception.c +446 -0
- data/ext/cairo/rb_cairo_font_extents.c +200 -0
- data/ext/cairo/rb_cairo_font_face.c +726 -0
- data/ext/cairo/rb_cairo_font_options.c +197 -0
- data/ext/cairo/rb_cairo_glyph.c +161 -0
- data/ext/cairo/rb_cairo_io.c +166 -0
- data/ext/cairo/rb_cairo_io.h +44 -0
- data/ext/cairo/rb_cairo_matrix.c +366 -0
- data/ext/cairo/rb_cairo_path.c +459 -0
- data/ext/cairo/rb_cairo_pattern.c +1192 -0
- data/ext/cairo/rb_cairo_private.c +255 -0
- data/ext/cairo/rb_cairo_private.h +129 -0
- data/ext/cairo/rb_cairo_rectangle.c +83 -0
- data/ext/cairo/rb_cairo_region.c +385 -0
- data/ext/cairo/rb_cairo_scaled_font.c +235 -0
- data/ext/cairo/rb_cairo_surface.c +2284 -0
- data/ext/cairo/rb_cairo_text_cluster.c +151 -0
- data/ext/cairo/rb_cairo_text_extents.c +221 -0
- data/lib/2.0/cairo.so +0 -0
- data/lib/2.1/cairo.so +0 -0
- data/lib/2.2/cairo.so +0 -0
- data/lib/cairo.rb +154 -0
- data/lib/cairo/color.rb +267 -0
- data/lib/cairo/colors.rb +656 -0
- data/lib/cairo/constants.rb +24 -0
- data/lib/cairo/context.rb +29 -0
- data/lib/cairo/context/blur.rb +45 -0
- data/lib/cairo/context/circle.rb +9 -0
- data/lib/cairo/context/color.rb +11 -0
- data/lib/cairo/context/path.rb +117 -0
- data/lib/cairo/context/rectangle.rb +33 -0
- data/lib/cairo/context/triangle.rb +12 -0
- data/lib/cairo/device.rb +13 -0
- data/lib/cairo/paper.rb +183 -0
- data/lib/cairo/papers.rb +65 -0
- data/lib/cairo/path.rb +15 -0
- data/lib/cairo/pattern.rb +12 -0
- data/lib/cairo/point.rb +7 -0
- data/lib/cairo/surface.rb +13 -0
- data/samples/agg/aa_test.rb +304 -0
- data/samples/blur.rb +46 -0
- data/samples/pac-nomralize.rb +170 -0
- data/samples/pac-tee.rb +170 -0
- data/samples/pac.rb +98 -0
- data/samples/png.rb +44 -0
- data/samples/scalable.rb +55 -0
- data/samples/text-on-path.rb +59 -0
- data/samples/text2.rb +130 -0
- data/test/cairo-test-utils.rb +44 -0
- data/test/run-test.rb +29 -0
- data/test/test_color.rb +17 -0
- data/test/test_constants.rb +27 -0
- data/test/test_context.rb +105 -0
- data/test/test_exception.rb +36 -0
- data/test/test_font_extents.rb +36 -0
- data/test/test_font_face.rb +257 -0
- data/test/test_font_options.rb +13 -0
- data/test/test_image_surface.rb +28 -0
- data/test/test_paper.rb +81 -0
- data/test/test_quartz_image_surface.rb +13 -0
- data/test/test_raster_source_pattern.rb +162 -0
- data/test/test_recording_surface.rb +19 -0
- data/test/test_region.rb +102 -0
- data/test/test_scaled_font.rb +34 -0
- data/test/test_script_device.rb +46 -0
- data/test/test_script_surface.rb +13 -0
- data/test/test_surface.rb +61 -0
- data/test/test_tee_surface.rb +32 -0
- data/test/test_text_cluster.rb +32 -0
- data/test/test_text_extents.rb +40 -0
- data/test/test_text_to_glyphs_data.rb +51 -0
- data/test/test_xml_device.rb +22 -0
- data/test/test_xml_surface.rb +34 -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/fc-match.exe +0 -0
- data/vendor/local/bin/fc-pattern.exe +0 -0
- data/vendor/local/bin/fc-query.exe +0 -0
- data/vendor/local/bin/fc-scan.exe +0 -0
- data/vendor/local/bin/fc-validate.exe +0 -0
- data/vendor/local/bin/freetype-config +163 -0
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
- data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
- data/vendor/local/bin/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libfreetype-6.dll +0 -0
- data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
- data/vendor/local/bin/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +127 -0
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +127 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/png-fix-itxt.exe +0 -0
- data/vendor/local/bin/pngfix.exe +0 -0
- data/vendor/local/bin/xml2-config +106 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/fonts/conf.d/10-scale-bitmap-fonts.conf +81 -0
- data/vendor/local/etc/fonts/conf.d/20-unhint-small-vera.conf +48 -0
- data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +546 -0
- data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +24 -0
- data/vendor/local/etc/fonts/conf.d/40-nonlatin.conf +231 -0
- data/vendor/local/etc/fonts/conf.d/45-latin.conf +189 -0
- data/vendor/local/etc/fonts/conf.d/49-sansserif.conf +21 -0
- data/vendor/local/etc/fonts/conf.d/50-user.conf +15 -0
- data/vendor/local/etc/fonts/conf.d/51-local.conf +6 -0
- data/vendor/local/etc/fonts/conf.d/60-latin.conf +70 -0
- data/vendor/local/etc/fonts/conf.d/65-fonts-persian.conf +419 -0
- data/vendor/local/etc/fonts/conf.d/65-nonlatin.conf +196 -0
- data/vendor/local/etc/fonts/conf.d/69-unifont.conf +28 -0
- data/vendor/local/etc/fonts/conf.d/80-delicious.conf +19 -0
- data/vendor/local/etc/fonts/conf.d/90-synthetic.conf +64 -0
- data/vendor/local/etc/fonts/conf.d/README +23 -0
- data/vendor/local/etc/fonts/fonts.conf +155 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +123 -0
- data/vendor/local/include/cairo/cairo-features.h +31 -0
- data/vendor/local/include/cairo/cairo-ft.h +118 -0
- data/vendor/local/include/cairo/cairo-gobject.h +192 -0
- data/vendor/local/include/cairo/cairo-pdf.h +94 -0
- data/vendor/local/include/cairo/cairo-ps.h +116 -0
- data/vendor/local/include/cairo/cairo-script-interpreter.h +124 -0
- data/vendor/local/include/cairo/cairo-script.h +98 -0
- data/vendor/local/include/cairo/cairo-svg.h +84 -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 +3153 -0
- data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
- data/vendor/local/include/fontconfig/fcprivate.h +124 -0
- data/vendor/local/include/fontconfig/fontconfig.h +1010 -0
- data/vendor/local/include/freetype2/config/ftconfig.h +706 -0
- data/vendor/local/include/freetype2/config/ftheader.h +832 -0
- data/vendor/local/include/freetype2/config/ftmodule.h +20 -0
- data/vendor/local/include/freetype2/config/ftoption.h +846 -0
- data/vendor/local/include/freetype2/config/ftstdlib.h +174 -0
- data/vendor/local/include/freetype2/freetype.h +4076 -0
- data/vendor/local/include/freetype2/ft2build.h +42 -0
- data/vendor/local/include/freetype2/ftadvanc.h +182 -0
- data/vendor/local/include/freetype2/ftautoh.h +402 -0
- data/vendor/local/include/freetype2/ftbbox.h +102 -0
- data/vendor/local/include/freetype2/ftbdf.h +210 -0
- data/vendor/local/include/freetype2/ftbitmap.h +227 -0
- data/vendor/local/include/freetype2/ftbzip2.h +102 -0
- data/vendor/local/include/freetype2/ftcache.h +1057 -0
- data/vendor/local/include/freetype2/ftcffdrv.h +254 -0
- data/vendor/local/include/freetype2/ftchapters.h +121 -0
- data/vendor/local/include/freetype2/ftcid.h +166 -0
- data/vendor/local/include/freetype2/fterrdef.h +249 -0
- data/vendor/local/include/freetype2/fterrors.h +198 -0
- data/vendor/local/include/freetype2/ftgasp.h +128 -0
- data/vendor/local/include/freetype2/ftglyph.h +620 -0
- data/vendor/local/include/freetype2/ftgxval.h +358 -0
- data/vendor/local/include/freetype2/ftgzip.h +149 -0
- data/vendor/local/include/freetype2/ftimage.h +1322 -0
- data/vendor/local/include/freetype2/ftincrem.h +353 -0
- data/vendor/local/include/freetype2/ftlcdfil.h +251 -0
- data/vendor/local/include/freetype2/ftlist.h +277 -0
- data/vendor/local/include/freetype2/ftlzw.h +99 -0
- data/vendor/local/include/freetype2/ftmac.h +274 -0
- data/vendor/local/include/freetype2/ftmm.h +377 -0
- data/vendor/local/include/freetype2/ftmodapi.h +641 -0
- data/vendor/local/include/freetype2/ftmoderr.h +194 -0
- data/vendor/local/include/freetype2/ftotval.h +203 -0
- data/vendor/local/include/freetype2/ftoutln.h +572 -0
- data/vendor/local/include/freetype2/ftpfr.h +172 -0
- data/vendor/local/include/freetype2/ftrender.h +238 -0
- data/vendor/local/include/freetype2/ftsizes.h +159 -0
- data/vendor/local/include/freetype2/ftsnames.h +200 -0
- data/vendor/local/include/freetype2/ftstroke.h +751 -0
- data/vendor/local/include/freetype2/ftsynth.h +81 -0
- data/vendor/local/include/freetype2/ftsystem.h +347 -0
- data/vendor/local/include/freetype2/fttrigon.h +350 -0
- data/vendor/local/include/freetype2/ftttdrv.h +170 -0
- data/vendor/local/include/freetype2/fttypes.h +598 -0
- data/vendor/local/include/freetype2/ftwinfnt.h +275 -0
- data/vendor/local/include/freetype2/ftxf86.h +83 -0
- data/vendor/local/include/freetype2/t1tables.h +662 -0
- data/vendor/local/include/freetype2/ttnameid.h +1237 -0
- data/vendor/local/include/freetype2/tttables.h +787 -0
- data/vendor/local/include/freetype2/tttags.h +111 -0
- data/vendor/local/include/freetype2/ttunpat.h +59 -0
- data/vendor/local/include/libpng16/png.h +3276 -0
- data/vendor/local/include/libpng16/pngconf.h +644 -0
- data/vendor/local/include/libpng16/pnglibconf.h +208 -0
- data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
- data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
- data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
- data/vendor/local/include/libxml2/libxml/SAX2.h +178 -0
- data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
- data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
- data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
- data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
- data/vendor/local/include/libxml2/libxml/dict.h +80 -0
- data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
- data/vendor/local/include/libxml2/libxml/entities.h +151 -0
- data/vendor/local/include/libxml2/libxml/globals.h +509 -0
- data/vendor/local/include/libxml2/libxml/hash.h +233 -0
- data/vendor/local/include/libxml2/libxml/list.h +137 -0
- data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
- data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
- data/vendor/local/include/libxml2/libxml/parser.h +1241 -0
- data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
- data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
- data/vendor/local/include/libxml2/libxml/relaxng.h +217 -0
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
- data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
- data/vendor/local/include/libxml2/libxml/threads.h +84 -0
- data/vendor/local/include/libxml2/libxml/tree.h +1310 -0
- data/vendor/local/include/libxml2/libxml/uri.h +94 -0
- data/vendor/local/include/libxml2/libxml/valid.h +458 -0
- data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
- data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
- data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
- data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
- data/vendor/local/include/libxml2/libxml/xmlerror.h +945 -0
- data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
- data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
- data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
- data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
- data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
- data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
- data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
- data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
- data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
- data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
- data/vendor/local/include/libxml2/libxml/xmlversion.h +489 -0
- data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
- data/vendor/local/include/libxml2/libxml/xpath.h +557 -0
- data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
- data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
- data/vendor/local/include/pixman-1/pixman-version.h +50 -0
- data/vendor/local/include/pixman-1/pixman.h +1111 -0
- data/vendor/local/include/png.h +3276 -0
- data/vendor/local/include/pngconf.h +644 -0
- data/vendor/local/include/pnglibconf.h +208 -0
- data/vendor/local/include/zconf.h +511 -0
- data/vendor/local/include/zlib.h +1768 -0
- data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +50 -0
- data/vendor/local/lib/fontconfig.def +207 -0
- data/vendor/local/lib/libcairo-gobject.a +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-gobject.la +41 -0
- data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.la +41 -0
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libcairo.la +41 -0
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.la +41 -0
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +41 -0
- data/vendor/local/lib/libpixman-1.a +0 -0
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpixman-1.la +41 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +41 -0
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +41 -0
- data/vendor/local/lib/libxml2.a +0 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.la +41 -0
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +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-script.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 +18 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +14 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng16.pc +11 -0
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/pixman-1.pc +11 -0
- data/vendor/local/lib/pkgconfig/zlib.pc +13 -0
- data/vendor/local/lib/xml2Conf.sh +8 -0
- data/vendor/local/share/aclocal/freetype2.m4 +194 -0
- data/vendor/local/share/aclocal/libxml.m4 +188 -0
- data/vendor/local/share/doc/libxml2-2.9.2/Copyright +23 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testHTML.c +880 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testSAX.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testXPath.c +229 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/xmllint.c +3801 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/DOM.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/FAQ.html +299 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/encoding.html +217 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xml +751 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xsl +174 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/book1.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/index.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/left.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-DOCBparser.html +51 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLparser.html +184 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLtree.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX.html +125 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX2.html +128 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-c14n.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-catalog.html +142 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-chvalid.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-debugXML.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-dict.html +58 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-encoding.html +124 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-entities.html +79 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-globals.html +152 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-hash.html +116 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-lib.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-list.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanoftp.html +94 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanohttp.html +65 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parser.html +559 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parserInternals.html +322 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-pattern.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-relaxng.html +162 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schemasInternals.html +373 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schematron.html +81 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-threads.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-tree.html +990 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-uri.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-valid.html +289 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xinclude.html +59 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xlink.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlIO.html +212 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlautomata.html +85 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlerror.html +865 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlexports.html +20 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmemory.html +107 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmodule.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlreader.html +330 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlregexp.html +143 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlsave.html +60 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemas.html +185 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemastypes.html +123 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlstring.html +108 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlunicode.html +512 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlversion.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlwriter.html +261 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpath.html +316 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpathInternals.html +394 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpointer.html +83 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xzlib.html +16 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/right.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io1.c +166 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io2.c +58 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io2.res +2 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/libxml.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse1.c +56 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse2.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse3.c +60 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse4.c +143 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.c +107 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.res +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader2.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.c +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.res +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.res +3 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/redhat.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/structure.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test1.xml +1 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test2.xml +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test3.xml +39 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/testWriter.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.c +94 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.res +4 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.c +118 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.res +18 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tst.xml +7 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apa.html +8 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apb.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apc.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apd.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ape.html +78 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apf.html +67 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apg.html +75 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/aph.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/api.html +4 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s02.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s03.html +47 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s04.html +54 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s05.html +55 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s06.html +35 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s07.html +30 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s08.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s09.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddattribute.c +64 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddkeyword.c +75 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeconvert.c +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includegetattribute.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includekeyword.c +79 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includexpath.c +74 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ix01.html +1 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/xmltutorial.pdf +1336 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/w3c.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/writer.xml +2 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xml.html +5995 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.c +250 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.c +190 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.res +30 -0
- data/vendor/local/share/fontconfig/conf.avail/10-autohint.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-no-sub-pixel.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf +81 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-unhinted.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-default.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-light.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/20-unhint-small-vera.conf +48 -0
- data/vendor/local/share/fontconfig/conf.avail/25-unhint-nonlatin.conf +128 -0
- data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +546 -0
- data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +24 -0
- data/vendor/local/share/fontconfig/conf.avail/40-nonlatin.conf +231 -0
- data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +189 -0
- data/vendor/local/share/fontconfig/conf.avail/49-sansserif.conf +21 -0
- data/vendor/local/share/fontconfig/conf.avail/50-user.conf +15 -0
- data/vendor/local/share/fontconfig/conf.avail/51-local.conf +6 -0
- data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +70 -0
- data/vendor/local/share/fontconfig/conf.avail/65-fonts-persian.conf +419 -0
- data/vendor/local/share/fontconfig/conf.avail/65-khmer.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/65-nonlatin.conf +196 -0
- data/vendor/local/share/fontconfig/conf.avail/69-unifont.conf +28 -0
- data/vendor/local/share/fontconfig/conf.avail/70-no-bitmaps.conf +12 -0
- data/vendor/local/share/fontconfig/conf.avail/70-yes-bitmaps.conf +12 -0
- data/vendor/local/share/fontconfig/conf.avail/80-delicious.conf +19 -0
- data/vendor/local/share/fontconfig/conf.avail/90-synthetic.conf +64 -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 +75 -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 +397 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +428 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +452 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +342 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +315 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1194 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +577 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +129 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +197 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +600 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +226 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +810 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +302 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +360 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +394 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +156 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +677 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +342 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +326 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +280 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +527 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +535 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +170 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +636 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +380 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +653 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +559 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +2231 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +956 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1637 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2695 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +53 -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 +74 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +1138 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +747 -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 +177 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +193 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +179 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +123 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +107 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +128 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +1122 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.html +157 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +833 -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 +266 -0
- data/vendor/local/share/gtk-doc/html/cairo/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
- data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
- data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1597 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +953 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +292 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +542 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3573 -0
- data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
- data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
- data/vendor/local/share/license/cairo/AUTHORS +115 -0
- data/vendor/local/share/license/cairo/COPYING +33 -0
- data/vendor/local/share/license/cairo/COPYING-LGPL-2.1 +510 -0
- data/vendor/local/share/license/cairo/COPYING-MPL-1.1 +470 -0
- data/vendor/local/share/license/cairo/README +204 -0
- data/vendor/local/share/license/cairo/README.win32 +66 -0
- data/vendor/local/share/license/fontconfig/AUTHORS +3 -0
- data/vendor/local/share/license/fontconfig/COPYING +28 -0
- data/vendor/local/share/license/fontconfig/README +1484 -0
- data/vendor/local/share/license/freetype/README +83 -0
- data/vendor/local/share/license/freetype/README.git +50 -0
- data/vendor/local/share/license/libpng/README +215 -0
- data/vendor/local/share/license/libxml2/AUTHORS +5 -0
- data/vendor/local/share/license/libxml2/COPYING +23 -0
- data/vendor/local/share/license/libxml2/README +39 -0
- data/vendor/local/share/license/libxml2/README.tests +39 -0
- data/vendor/local/share/license/pixman/AUTHORS +0 -0
- data/vendor/local/share/license/pixman/COPYING +42 -0
- data/vendor/local/share/license/pixman/README +116 -0
- data/vendor/local/share/license/zlib/README +115 -0
- data/vendor/local/share/man/man1/freetype-config.1 +108 -0
- data/vendor/local/share/man/man1/xml2-config.1 +30 -0
- data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
- data/vendor/local/share/man/man1/xmllint.1 +647 -0
- data/vendor/local/share/man/man3/libpng.3 +6217 -0
- data/vendor/local/share/man/man3/libpngpf.3 +18 -0
- data/vendor/local/share/man/man3/libxml.3 +71 -0
- data/vendor/local/share/man/man5/png.5 +74 -0
- data/vendor/local/share/xml/fontconfig/fonts.dtd +233 -0
- metadata +774 -0
@@ -0,0 +1,208 @@
|
|
1
|
+
/* pnglibconf.h - library build configuration */
|
2
|
+
|
3
|
+
/* libpng version 1.6.14 - October 23, 2014 */
|
4
|
+
|
5
|
+
/* Copyright (c) 1998-2014 Glenn Randers-Pehrson */
|
6
|
+
|
7
|
+
/* This code is released under the libpng license. */
|
8
|
+
/* For conditions of distribution and use, see the disclaimer */
|
9
|
+
/* and license in png.h */
|
10
|
+
|
11
|
+
/* pnglibconf.h */
|
12
|
+
/* Machine generated file: DO NOT EDIT */
|
13
|
+
/* Derived from: scripts/pnglibconf.dfa */
|
14
|
+
#ifndef PNGLCONF_H
|
15
|
+
#define PNGLCONF_H
|
16
|
+
/* options */
|
17
|
+
#define PNG_16BIT_SUPPORTED
|
18
|
+
#define PNG_ALIGNED_MEMORY_SUPPORTED
|
19
|
+
/*#undef PNG_ARM_NEON_API_SUPPORTED*/
|
20
|
+
/*#undef PNG_ARM_NEON_CHECK_SUPPORTED*/
|
21
|
+
#define PNG_BENIGN_ERRORS_SUPPORTED
|
22
|
+
#define PNG_BENIGN_READ_ERRORS_SUPPORTED
|
23
|
+
/*#undef PNG_BENIGN_WRITE_ERRORS_SUPPORTED*/
|
24
|
+
#define PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED
|
25
|
+
#define PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED
|
26
|
+
#define PNG_COLORSPACE_SUPPORTED
|
27
|
+
#define PNG_CONSOLE_IO_SUPPORTED
|
28
|
+
#define PNG_CONVERT_tIME_SUPPORTED
|
29
|
+
#define PNG_EASY_ACCESS_SUPPORTED
|
30
|
+
/*#undef PNG_ERROR_NUMBERS_SUPPORTED*/
|
31
|
+
#define PNG_ERROR_TEXT_SUPPORTED
|
32
|
+
#define PNG_FIXED_POINT_SUPPORTED
|
33
|
+
#define PNG_FLOATING_ARITHMETIC_SUPPORTED
|
34
|
+
#define PNG_FLOATING_POINT_SUPPORTED
|
35
|
+
#define PNG_FORMAT_AFIRST_SUPPORTED
|
36
|
+
#define PNG_FORMAT_BGR_SUPPORTED
|
37
|
+
#define PNG_GAMMA_SUPPORTED
|
38
|
+
#define PNG_GET_PALETTE_MAX_SUPPORTED
|
39
|
+
#define PNG_HANDLE_AS_UNKNOWN_SUPPORTED
|
40
|
+
#define PNG_INCH_CONVERSIONS_SUPPORTED
|
41
|
+
#define PNG_INFO_IMAGE_SUPPORTED
|
42
|
+
#define PNG_IO_STATE_SUPPORTED
|
43
|
+
#define PNG_MNG_FEATURES_SUPPORTED
|
44
|
+
#define PNG_POINTER_INDEXING_SUPPORTED
|
45
|
+
#define PNG_PROGRESSIVE_READ_SUPPORTED
|
46
|
+
#define PNG_READ_16BIT_SUPPORTED
|
47
|
+
#define PNG_READ_ALPHA_MODE_SUPPORTED
|
48
|
+
#define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED
|
49
|
+
#define PNG_READ_BACKGROUND_SUPPORTED
|
50
|
+
#define PNG_READ_BGR_SUPPORTED
|
51
|
+
#define PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED
|
52
|
+
#define PNG_READ_COMPOSITE_NODIV_SUPPORTED
|
53
|
+
#define PNG_READ_COMPRESSED_TEXT_SUPPORTED
|
54
|
+
#define PNG_READ_EXPAND_16_SUPPORTED
|
55
|
+
#define PNG_READ_EXPAND_SUPPORTED
|
56
|
+
#define PNG_READ_FILLER_SUPPORTED
|
57
|
+
#define PNG_READ_GAMMA_SUPPORTED
|
58
|
+
#define PNG_READ_GET_PALETTE_MAX_SUPPORTED
|
59
|
+
#define PNG_READ_GRAY_TO_RGB_SUPPORTED
|
60
|
+
#define PNG_READ_INTERLACING_SUPPORTED
|
61
|
+
#define PNG_READ_INT_FUNCTIONS_SUPPORTED
|
62
|
+
#define PNG_READ_INVERT_ALPHA_SUPPORTED
|
63
|
+
#define PNG_READ_INVERT_SUPPORTED
|
64
|
+
#define PNG_READ_OPT_PLTE_SUPPORTED
|
65
|
+
#define PNG_READ_PACKSWAP_SUPPORTED
|
66
|
+
#define PNG_READ_PACK_SUPPORTED
|
67
|
+
#define PNG_READ_QUANTIZE_SUPPORTED
|
68
|
+
#define PNG_READ_RGB_TO_GRAY_SUPPORTED
|
69
|
+
#define PNG_READ_SCALE_16_TO_8_SUPPORTED
|
70
|
+
#define PNG_READ_SHIFT_SUPPORTED
|
71
|
+
#define PNG_READ_STRIP_16_TO_8_SUPPORTED
|
72
|
+
#define PNG_READ_STRIP_ALPHA_SUPPORTED
|
73
|
+
#define PNG_READ_SUPPORTED
|
74
|
+
#define PNG_READ_SWAP_ALPHA_SUPPORTED
|
75
|
+
#define PNG_READ_SWAP_SUPPORTED
|
76
|
+
#define PNG_READ_TEXT_SUPPORTED
|
77
|
+
#define PNG_READ_TRANSFORMS_SUPPORTED
|
78
|
+
#define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
|
79
|
+
#define PNG_READ_USER_CHUNKS_SUPPORTED
|
80
|
+
#define PNG_READ_USER_TRANSFORM_SUPPORTED
|
81
|
+
#define PNG_READ_bKGD_SUPPORTED
|
82
|
+
#define PNG_READ_cHRM_SUPPORTED
|
83
|
+
#define PNG_READ_gAMA_SUPPORTED
|
84
|
+
#define PNG_READ_hIST_SUPPORTED
|
85
|
+
#define PNG_READ_iCCP_SUPPORTED
|
86
|
+
#define PNG_READ_iTXt_SUPPORTED
|
87
|
+
#define PNG_READ_oFFs_SUPPORTED
|
88
|
+
#define PNG_READ_pCAL_SUPPORTED
|
89
|
+
#define PNG_READ_pHYs_SUPPORTED
|
90
|
+
#define PNG_READ_sBIT_SUPPORTED
|
91
|
+
#define PNG_READ_sCAL_SUPPORTED
|
92
|
+
#define PNG_READ_sPLT_SUPPORTED
|
93
|
+
#define PNG_READ_sRGB_SUPPORTED
|
94
|
+
#define PNG_READ_tEXt_SUPPORTED
|
95
|
+
#define PNG_READ_tIME_SUPPORTED
|
96
|
+
#define PNG_READ_tRNS_SUPPORTED
|
97
|
+
#define PNG_READ_zTXt_SUPPORTED
|
98
|
+
/*#undef PNG_SAFE_LIMITS_SUPPORTED*/
|
99
|
+
#define PNG_SAVE_INT_32_SUPPORTED
|
100
|
+
#define PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED
|
101
|
+
#define PNG_SEQUENTIAL_READ_SUPPORTED
|
102
|
+
#define PNG_SETJMP_SUPPORTED
|
103
|
+
#define PNG_SET_CHUNK_CACHE_LIMIT_SUPPORTED
|
104
|
+
#define PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED
|
105
|
+
#define PNG_SET_OPTION_SUPPORTED
|
106
|
+
#define PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
|
107
|
+
#define PNG_SET_USER_LIMITS_SUPPORTED
|
108
|
+
#define PNG_SIMPLIFIED_READ_AFIRST_SUPPORTED
|
109
|
+
#define PNG_SIMPLIFIED_READ_BGR_SUPPORTED
|
110
|
+
#define PNG_SIMPLIFIED_READ_SUPPORTED
|
111
|
+
#define PNG_SIMPLIFIED_WRITE_AFIRST_SUPPORTED
|
112
|
+
#define PNG_SIMPLIFIED_WRITE_BGR_SUPPORTED
|
113
|
+
#define PNG_SIMPLIFIED_WRITE_SUPPORTED
|
114
|
+
#define PNG_STDIO_SUPPORTED
|
115
|
+
#define PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
|
116
|
+
#define PNG_TEXT_SUPPORTED
|
117
|
+
#define PNG_TIME_RFC1123_SUPPORTED
|
118
|
+
#define PNG_UNKNOWN_CHUNKS_SUPPORTED
|
119
|
+
#define PNG_USER_CHUNKS_SUPPORTED
|
120
|
+
#define PNG_USER_LIMITS_SUPPORTED
|
121
|
+
#define PNG_USER_MEM_SUPPORTED
|
122
|
+
#define PNG_USER_TRANSFORM_INFO_SUPPORTED
|
123
|
+
#define PNG_USER_TRANSFORM_PTR_SUPPORTED
|
124
|
+
#define PNG_WARNINGS_SUPPORTED
|
125
|
+
#define PNG_WRITE_16BIT_SUPPORTED
|
126
|
+
#define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED
|
127
|
+
#define PNG_WRITE_BGR_SUPPORTED
|
128
|
+
#define PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED
|
129
|
+
#define PNG_WRITE_COMPRESSED_TEXT_SUPPORTED
|
130
|
+
#define PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
|
131
|
+
#define PNG_WRITE_FILLER_SUPPORTED
|
132
|
+
#define PNG_WRITE_FILTER_SUPPORTED
|
133
|
+
#define PNG_WRITE_FLUSH_SUPPORTED
|
134
|
+
#define PNG_WRITE_GET_PALETTE_MAX_SUPPORTED
|
135
|
+
#define PNG_WRITE_INTERLACING_SUPPORTED
|
136
|
+
#define PNG_WRITE_INT_FUNCTIONS_SUPPORTED
|
137
|
+
#define PNG_WRITE_INVERT_ALPHA_SUPPORTED
|
138
|
+
#define PNG_WRITE_INVERT_SUPPORTED
|
139
|
+
#define PNG_WRITE_OPTIMIZE_CMF_SUPPORTED
|
140
|
+
#define PNG_WRITE_PACKSWAP_SUPPORTED
|
141
|
+
#define PNG_WRITE_PACK_SUPPORTED
|
142
|
+
#define PNG_WRITE_SHIFT_SUPPORTED
|
143
|
+
#define PNG_WRITE_SUPPORTED
|
144
|
+
#define PNG_WRITE_SWAP_ALPHA_SUPPORTED
|
145
|
+
#define PNG_WRITE_SWAP_SUPPORTED
|
146
|
+
#define PNG_WRITE_TEXT_SUPPORTED
|
147
|
+
#define PNG_WRITE_TRANSFORMS_SUPPORTED
|
148
|
+
#define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
|
149
|
+
#define PNG_WRITE_USER_TRANSFORM_SUPPORTED
|
150
|
+
#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
|
151
|
+
#define PNG_WRITE_bKGD_SUPPORTED
|
152
|
+
#define PNG_WRITE_cHRM_SUPPORTED
|
153
|
+
#define PNG_WRITE_gAMA_SUPPORTED
|
154
|
+
#define PNG_WRITE_hIST_SUPPORTED
|
155
|
+
#define PNG_WRITE_iCCP_SUPPORTED
|
156
|
+
#define PNG_WRITE_iTXt_SUPPORTED
|
157
|
+
#define PNG_WRITE_oFFs_SUPPORTED
|
158
|
+
#define PNG_WRITE_pCAL_SUPPORTED
|
159
|
+
#define PNG_WRITE_pHYs_SUPPORTED
|
160
|
+
#define PNG_WRITE_sBIT_SUPPORTED
|
161
|
+
#define PNG_WRITE_sCAL_SUPPORTED
|
162
|
+
#define PNG_WRITE_sPLT_SUPPORTED
|
163
|
+
#define PNG_WRITE_sRGB_SUPPORTED
|
164
|
+
#define PNG_WRITE_tEXt_SUPPORTED
|
165
|
+
#define PNG_WRITE_tIME_SUPPORTED
|
166
|
+
#define PNG_WRITE_tRNS_SUPPORTED
|
167
|
+
#define PNG_WRITE_zTXt_SUPPORTED
|
168
|
+
#define PNG_bKGD_SUPPORTED
|
169
|
+
#define PNG_cHRM_SUPPORTED
|
170
|
+
#define PNG_gAMA_SUPPORTED
|
171
|
+
#define PNG_hIST_SUPPORTED
|
172
|
+
#define PNG_iCCP_SUPPORTED
|
173
|
+
#define PNG_iTXt_SUPPORTED
|
174
|
+
#define PNG_oFFs_SUPPORTED
|
175
|
+
#define PNG_pCAL_SUPPORTED
|
176
|
+
#define PNG_pHYs_SUPPORTED
|
177
|
+
#define PNG_sBIT_SUPPORTED
|
178
|
+
#define PNG_sCAL_SUPPORTED
|
179
|
+
#define PNG_sPLT_SUPPORTED
|
180
|
+
#define PNG_sRGB_SUPPORTED
|
181
|
+
#define PNG_tEXt_SUPPORTED
|
182
|
+
#define PNG_tIME_SUPPORTED
|
183
|
+
#define PNG_tRNS_SUPPORTED
|
184
|
+
#define PNG_zTXt_SUPPORTED
|
185
|
+
/* end of options */
|
186
|
+
/* settings */
|
187
|
+
#define PNG_API_RULE 0
|
188
|
+
#define PNG_COST_SHIFT 3
|
189
|
+
#define PNG_DEFAULT_READ_MACROS 1
|
190
|
+
#define PNG_GAMMA_THRESHOLD_FIXED 5000
|
191
|
+
#define PNG_IDAT_READ_SIZE PNG_ZBUF_SIZE
|
192
|
+
#define PNG_INFLATE_BUF_SIZE 1024
|
193
|
+
#define PNG_MAX_GAMMA_8 11
|
194
|
+
#define PNG_QUANTIZE_BLUE_BITS 5
|
195
|
+
#define PNG_QUANTIZE_GREEN_BITS 5
|
196
|
+
#define PNG_QUANTIZE_RED_BITS 5
|
197
|
+
#define PNG_TEXT_Z_DEFAULT_COMPRESSION (-1)
|
198
|
+
#define PNG_TEXT_Z_DEFAULT_STRATEGY 0
|
199
|
+
#define PNG_WEIGHT_SHIFT 8
|
200
|
+
#define PNG_ZBUF_SIZE 8192
|
201
|
+
#define PNG_ZLIB_VERNUM 0x1280
|
202
|
+
#define PNG_Z_DEFAULT_COMPRESSION (-1)
|
203
|
+
#define PNG_Z_DEFAULT_NOFILTER_STRATEGY 0
|
204
|
+
#define PNG_Z_DEFAULT_STRATEGY 1
|
205
|
+
#define PNG_sCAL_PRECISION 5
|
206
|
+
#define PNG_sRGB_PROFILE_CHECKS 2
|
207
|
+
/* end of settings */
|
208
|
+
#endif /* PNGLCONF_H */
|
@@ -0,0 +1,511 @@
|
|
1
|
+
/* zconf.h -- configuration of the zlib compression library
|
2
|
+
* Copyright (C) 1995-2013 Jean-loup Gailly.
|
3
|
+
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
|
+
*/
|
5
|
+
|
6
|
+
/* @(#) $Id$ */
|
7
|
+
|
8
|
+
#ifndef ZCONF_H
|
9
|
+
#define ZCONF_H
|
10
|
+
|
11
|
+
/*
|
12
|
+
* If you *really* need a unique prefix for all types and library functions,
|
13
|
+
* compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
|
14
|
+
* Even better than compiling with -DZ_PREFIX would be to use configure to set
|
15
|
+
* this permanently in zconf.h using "./configure --zprefix".
|
16
|
+
*/
|
17
|
+
#ifdef Z_PREFIX /* may be set to #if 1 by ./configure */
|
18
|
+
# define Z_PREFIX_SET
|
19
|
+
|
20
|
+
/* all linked symbols */
|
21
|
+
# define _dist_code z__dist_code
|
22
|
+
# define _length_code z__length_code
|
23
|
+
# define _tr_align z__tr_align
|
24
|
+
# define _tr_flush_bits z__tr_flush_bits
|
25
|
+
# define _tr_flush_block z__tr_flush_block
|
26
|
+
# define _tr_init z__tr_init
|
27
|
+
# define _tr_stored_block z__tr_stored_block
|
28
|
+
# define _tr_tally z__tr_tally
|
29
|
+
# define adler32 z_adler32
|
30
|
+
# define adler32_combine z_adler32_combine
|
31
|
+
# define adler32_combine64 z_adler32_combine64
|
32
|
+
# ifndef Z_SOLO
|
33
|
+
# define compress z_compress
|
34
|
+
# define compress2 z_compress2
|
35
|
+
# define compressBound z_compressBound
|
36
|
+
# endif
|
37
|
+
# define crc32 z_crc32
|
38
|
+
# define crc32_combine z_crc32_combine
|
39
|
+
# define crc32_combine64 z_crc32_combine64
|
40
|
+
# define deflate z_deflate
|
41
|
+
# define deflateBound z_deflateBound
|
42
|
+
# define deflateCopy z_deflateCopy
|
43
|
+
# define deflateEnd z_deflateEnd
|
44
|
+
# define deflateInit2_ z_deflateInit2_
|
45
|
+
# define deflateInit_ z_deflateInit_
|
46
|
+
# define deflateParams z_deflateParams
|
47
|
+
# define deflatePending z_deflatePending
|
48
|
+
# define deflatePrime z_deflatePrime
|
49
|
+
# define deflateReset z_deflateReset
|
50
|
+
# define deflateResetKeep z_deflateResetKeep
|
51
|
+
# define deflateSetDictionary z_deflateSetDictionary
|
52
|
+
# define deflateSetHeader z_deflateSetHeader
|
53
|
+
# define deflateTune z_deflateTune
|
54
|
+
# define deflate_copyright z_deflate_copyright
|
55
|
+
# define get_crc_table z_get_crc_table
|
56
|
+
# ifndef Z_SOLO
|
57
|
+
# define gz_error z_gz_error
|
58
|
+
# define gz_intmax z_gz_intmax
|
59
|
+
# define gz_strwinerror z_gz_strwinerror
|
60
|
+
# define gzbuffer z_gzbuffer
|
61
|
+
# define gzclearerr z_gzclearerr
|
62
|
+
# define gzclose z_gzclose
|
63
|
+
# define gzclose_r z_gzclose_r
|
64
|
+
# define gzclose_w z_gzclose_w
|
65
|
+
# define gzdirect z_gzdirect
|
66
|
+
# define gzdopen z_gzdopen
|
67
|
+
# define gzeof z_gzeof
|
68
|
+
# define gzerror z_gzerror
|
69
|
+
# define gzflush z_gzflush
|
70
|
+
# define gzgetc z_gzgetc
|
71
|
+
# define gzgetc_ z_gzgetc_
|
72
|
+
# define gzgets z_gzgets
|
73
|
+
# define gzoffset z_gzoffset
|
74
|
+
# define gzoffset64 z_gzoffset64
|
75
|
+
# define gzopen z_gzopen
|
76
|
+
# define gzopen64 z_gzopen64
|
77
|
+
# ifdef _WIN32
|
78
|
+
# define gzopen_w z_gzopen_w
|
79
|
+
# endif
|
80
|
+
# define gzprintf z_gzprintf
|
81
|
+
# define gzvprintf z_gzvprintf
|
82
|
+
# define gzputc z_gzputc
|
83
|
+
# define gzputs z_gzputs
|
84
|
+
# define gzread z_gzread
|
85
|
+
# define gzrewind z_gzrewind
|
86
|
+
# define gzseek z_gzseek
|
87
|
+
# define gzseek64 z_gzseek64
|
88
|
+
# define gzsetparams z_gzsetparams
|
89
|
+
# define gztell z_gztell
|
90
|
+
# define gztell64 z_gztell64
|
91
|
+
# define gzungetc z_gzungetc
|
92
|
+
# define gzwrite z_gzwrite
|
93
|
+
# endif
|
94
|
+
# define inflate z_inflate
|
95
|
+
# define inflateBack z_inflateBack
|
96
|
+
# define inflateBackEnd z_inflateBackEnd
|
97
|
+
# define inflateBackInit_ z_inflateBackInit_
|
98
|
+
# define inflateCopy z_inflateCopy
|
99
|
+
# define inflateEnd z_inflateEnd
|
100
|
+
# define inflateGetHeader z_inflateGetHeader
|
101
|
+
# define inflateInit2_ z_inflateInit2_
|
102
|
+
# define inflateInit_ z_inflateInit_
|
103
|
+
# define inflateMark z_inflateMark
|
104
|
+
# define inflatePrime z_inflatePrime
|
105
|
+
# define inflateReset z_inflateReset
|
106
|
+
# define inflateReset2 z_inflateReset2
|
107
|
+
# define inflateSetDictionary z_inflateSetDictionary
|
108
|
+
# define inflateGetDictionary z_inflateGetDictionary
|
109
|
+
# define inflateSync z_inflateSync
|
110
|
+
# define inflateSyncPoint z_inflateSyncPoint
|
111
|
+
# define inflateUndermine z_inflateUndermine
|
112
|
+
# define inflateResetKeep z_inflateResetKeep
|
113
|
+
# define inflate_copyright z_inflate_copyright
|
114
|
+
# define inflate_fast z_inflate_fast
|
115
|
+
# define inflate_table z_inflate_table
|
116
|
+
# ifndef Z_SOLO
|
117
|
+
# define uncompress z_uncompress
|
118
|
+
# endif
|
119
|
+
# define zError z_zError
|
120
|
+
# ifndef Z_SOLO
|
121
|
+
# define zcalloc z_zcalloc
|
122
|
+
# define zcfree z_zcfree
|
123
|
+
# endif
|
124
|
+
# define zlibCompileFlags z_zlibCompileFlags
|
125
|
+
# define zlibVersion z_zlibVersion
|
126
|
+
|
127
|
+
/* all zlib typedefs in zlib.h and zconf.h */
|
128
|
+
# define Byte z_Byte
|
129
|
+
# define Bytef z_Bytef
|
130
|
+
# define alloc_func z_alloc_func
|
131
|
+
# define charf z_charf
|
132
|
+
# define free_func z_free_func
|
133
|
+
# ifndef Z_SOLO
|
134
|
+
# define gzFile z_gzFile
|
135
|
+
# endif
|
136
|
+
# define gz_header z_gz_header
|
137
|
+
# define gz_headerp z_gz_headerp
|
138
|
+
# define in_func z_in_func
|
139
|
+
# define intf z_intf
|
140
|
+
# define out_func z_out_func
|
141
|
+
# define uInt z_uInt
|
142
|
+
# define uIntf z_uIntf
|
143
|
+
# define uLong z_uLong
|
144
|
+
# define uLongf z_uLongf
|
145
|
+
# define voidp z_voidp
|
146
|
+
# define voidpc z_voidpc
|
147
|
+
# define voidpf z_voidpf
|
148
|
+
|
149
|
+
/* all zlib structs in zlib.h and zconf.h */
|
150
|
+
# define gz_header_s z_gz_header_s
|
151
|
+
# define internal_state z_internal_state
|
152
|
+
|
153
|
+
#endif
|
154
|
+
|
155
|
+
#if defined(__MSDOS__) && !defined(MSDOS)
|
156
|
+
# define MSDOS
|
157
|
+
#endif
|
158
|
+
#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
|
159
|
+
# define OS2
|
160
|
+
#endif
|
161
|
+
#if defined(_WINDOWS) && !defined(WINDOWS)
|
162
|
+
# define WINDOWS
|
163
|
+
#endif
|
164
|
+
#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__)
|
165
|
+
# ifndef WIN32
|
166
|
+
# define WIN32
|
167
|
+
# endif
|
168
|
+
#endif
|
169
|
+
#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
|
170
|
+
# if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
|
171
|
+
# ifndef SYS16BIT
|
172
|
+
# define SYS16BIT
|
173
|
+
# endif
|
174
|
+
# endif
|
175
|
+
#endif
|
176
|
+
|
177
|
+
/*
|
178
|
+
* Compile with -DMAXSEG_64K if the alloc function cannot allocate more
|
179
|
+
* than 64k bytes at a time (needed on systems with 16-bit int).
|
180
|
+
*/
|
181
|
+
#ifdef SYS16BIT
|
182
|
+
# define MAXSEG_64K
|
183
|
+
#endif
|
184
|
+
#ifdef MSDOS
|
185
|
+
# define UNALIGNED_OK
|
186
|
+
#endif
|
187
|
+
|
188
|
+
#ifdef __STDC_VERSION__
|
189
|
+
# ifndef STDC
|
190
|
+
# define STDC
|
191
|
+
# endif
|
192
|
+
# if __STDC_VERSION__ >= 199901L
|
193
|
+
# ifndef STDC99
|
194
|
+
# define STDC99
|
195
|
+
# endif
|
196
|
+
# endif
|
197
|
+
#endif
|
198
|
+
#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
|
199
|
+
# define STDC
|
200
|
+
#endif
|
201
|
+
#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
|
202
|
+
# define STDC
|
203
|
+
#endif
|
204
|
+
#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
|
205
|
+
# define STDC
|
206
|
+
#endif
|
207
|
+
#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
|
208
|
+
# define STDC
|
209
|
+
#endif
|
210
|
+
|
211
|
+
#if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */
|
212
|
+
# define STDC
|
213
|
+
#endif
|
214
|
+
|
215
|
+
#ifndef STDC
|
216
|
+
# ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
|
217
|
+
# define const /* note: need a more gentle solution here */
|
218
|
+
# endif
|
219
|
+
#endif
|
220
|
+
|
221
|
+
#if defined(ZLIB_CONST) && !defined(z_const)
|
222
|
+
# define z_const const
|
223
|
+
#else
|
224
|
+
# define z_const
|
225
|
+
#endif
|
226
|
+
|
227
|
+
/* Some Mac compilers merge all .h files incorrectly: */
|
228
|
+
#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
|
229
|
+
# define NO_DUMMY_DECL
|
230
|
+
#endif
|
231
|
+
|
232
|
+
/* Maximum value for memLevel in deflateInit2 */
|
233
|
+
#ifndef MAX_MEM_LEVEL
|
234
|
+
# ifdef MAXSEG_64K
|
235
|
+
# define MAX_MEM_LEVEL 8
|
236
|
+
# else
|
237
|
+
# define MAX_MEM_LEVEL 9
|
238
|
+
# endif
|
239
|
+
#endif
|
240
|
+
|
241
|
+
/* Maximum value for windowBits in deflateInit2 and inflateInit2.
|
242
|
+
* WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
|
243
|
+
* created by gzip. (Files created by minigzip can still be extracted by
|
244
|
+
* gzip.)
|
245
|
+
*/
|
246
|
+
#ifndef MAX_WBITS
|
247
|
+
# define MAX_WBITS 15 /* 32K LZ77 window */
|
248
|
+
#endif
|
249
|
+
|
250
|
+
/* The memory requirements for deflate are (in bytes):
|
251
|
+
(1 << (windowBits+2)) + (1 << (memLevel+9))
|
252
|
+
that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
|
253
|
+
plus a few kilobytes for small objects. For example, if you want to reduce
|
254
|
+
the default memory requirements from 256K to 128K, compile with
|
255
|
+
make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
|
256
|
+
Of course this will generally degrade compression (there's no free lunch).
|
257
|
+
|
258
|
+
The memory requirements for inflate are (in bytes) 1 << windowBits
|
259
|
+
that is, 32K for windowBits=15 (default value) plus a few kilobytes
|
260
|
+
for small objects.
|
261
|
+
*/
|
262
|
+
|
263
|
+
/* Type declarations */
|
264
|
+
|
265
|
+
#ifndef OF /* function prototypes */
|
266
|
+
# ifdef STDC
|
267
|
+
# define OF(args) args
|
268
|
+
# else
|
269
|
+
# define OF(args) ()
|
270
|
+
# endif
|
271
|
+
#endif
|
272
|
+
|
273
|
+
#ifndef Z_ARG /* function prototypes for stdarg */
|
274
|
+
# if defined(STDC) || defined(Z_HAVE_STDARG_H)
|
275
|
+
# define Z_ARG(args) args
|
276
|
+
# else
|
277
|
+
# define Z_ARG(args) ()
|
278
|
+
# endif
|
279
|
+
#endif
|
280
|
+
|
281
|
+
/* The following definitions for FAR are needed only for MSDOS mixed
|
282
|
+
* model programming (small or medium model with some far allocations).
|
283
|
+
* This was tested only with MSC; for other MSDOS compilers you may have
|
284
|
+
* to define NO_MEMCPY in zutil.h. If you don't need the mixed model,
|
285
|
+
* just define FAR to be empty.
|
286
|
+
*/
|
287
|
+
#ifdef SYS16BIT
|
288
|
+
# if defined(M_I86SM) || defined(M_I86MM)
|
289
|
+
/* MSC small or medium model */
|
290
|
+
# define SMALL_MEDIUM
|
291
|
+
# ifdef _MSC_VER
|
292
|
+
# define FAR _far
|
293
|
+
# else
|
294
|
+
# define FAR far
|
295
|
+
# endif
|
296
|
+
# endif
|
297
|
+
# if (defined(__SMALL__) || defined(__MEDIUM__))
|
298
|
+
/* Turbo C small or medium model */
|
299
|
+
# define SMALL_MEDIUM
|
300
|
+
# ifdef __BORLANDC__
|
301
|
+
# define FAR _far
|
302
|
+
# else
|
303
|
+
# define FAR far
|
304
|
+
# endif
|
305
|
+
# endif
|
306
|
+
#endif
|
307
|
+
|
308
|
+
#if defined(WINDOWS) || defined(WIN32)
|
309
|
+
/* If building or using zlib as a DLL, define ZLIB_DLL.
|
310
|
+
* This is not mandatory, but it offers a little performance increase.
|
311
|
+
*/
|
312
|
+
# ifdef ZLIB_DLL
|
313
|
+
# if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
|
314
|
+
# ifdef ZLIB_INTERNAL
|
315
|
+
# define ZEXTERN extern __declspec(dllexport)
|
316
|
+
# else
|
317
|
+
# define ZEXTERN extern __declspec(dllimport)
|
318
|
+
# endif
|
319
|
+
# endif
|
320
|
+
# endif /* ZLIB_DLL */
|
321
|
+
/* If building or using zlib with the WINAPI/WINAPIV calling convention,
|
322
|
+
* define ZLIB_WINAPI.
|
323
|
+
* Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
|
324
|
+
*/
|
325
|
+
# ifdef ZLIB_WINAPI
|
326
|
+
# ifdef FAR
|
327
|
+
# undef FAR
|
328
|
+
# endif
|
329
|
+
# include <windows.h>
|
330
|
+
/* No need for _export, use ZLIB.DEF instead. */
|
331
|
+
/* For complete Windows compatibility, use WINAPI, not __stdcall. */
|
332
|
+
# define ZEXPORT WINAPI
|
333
|
+
# ifdef WIN32
|
334
|
+
# define ZEXPORTVA WINAPIV
|
335
|
+
# else
|
336
|
+
# define ZEXPORTVA FAR CDECL
|
337
|
+
# endif
|
338
|
+
# endif
|
339
|
+
#endif
|
340
|
+
|
341
|
+
#if defined (__BEOS__)
|
342
|
+
# ifdef ZLIB_DLL
|
343
|
+
# ifdef ZLIB_INTERNAL
|
344
|
+
# define ZEXPORT __declspec(dllexport)
|
345
|
+
# define ZEXPORTVA __declspec(dllexport)
|
346
|
+
# else
|
347
|
+
# define ZEXPORT __declspec(dllimport)
|
348
|
+
# define ZEXPORTVA __declspec(dllimport)
|
349
|
+
# endif
|
350
|
+
# endif
|
351
|
+
#endif
|
352
|
+
|
353
|
+
#ifndef ZEXTERN
|
354
|
+
# define ZEXTERN extern
|
355
|
+
#endif
|
356
|
+
#ifndef ZEXPORT
|
357
|
+
# define ZEXPORT
|
358
|
+
#endif
|
359
|
+
#ifndef ZEXPORTVA
|
360
|
+
# define ZEXPORTVA
|
361
|
+
#endif
|
362
|
+
|
363
|
+
#ifndef FAR
|
364
|
+
# define FAR
|
365
|
+
#endif
|
366
|
+
|
367
|
+
#if !defined(__MACTYPES__)
|
368
|
+
typedef unsigned char Byte; /* 8 bits */
|
369
|
+
#endif
|
370
|
+
typedef unsigned int uInt; /* 16 bits or more */
|
371
|
+
typedef unsigned long uLong; /* 32 bits or more */
|
372
|
+
|
373
|
+
#ifdef SMALL_MEDIUM
|
374
|
+
/* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
|
375
|
+
# define Bytef Byte FAR
|
376
|
+
#else
|
377
|
+
typedef Byte FAR Bytef;
|
378
|
+
#endif
|
379
|
+
typedef char FAR charf;
|
380
|
+
typedef int FAR intf;
|
381
|
+
typedef uInt FAR uIntf;
|
382
|
+
typedef uLong FAR uLongf;
|
383
|
+
|
384
|
+
#ifdef STDC
|
385
|
+
typedef void const *voidpc;
|
386
|
+
typedef void FAR *voidpf;
|
387
|
+
typedef void *voidp;
|
388
|
+
#else
|
389
|
+
typedef Byte const *voidpc;
|
390
|
+
typedef Byte FAR *voidpf;
|
391
|
+
typedef Byte *voidp;
|
392
|
+
#endif
|
393
|
+
|
394
|
+
#if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC)
|
395
|
+
# include <limits.h>
|
396
|
+
# if (UINT_MAX == 0xffffffffUL)
|
397
|
+
# define Z_U4 unsigned
|
398
|
+
# elif (ULONG_MAX == 0xffffffffUL)
|
399
|
+
# define Z_U4 unsigned long
|
400
|
+
# elif (USHRT_MAX == 0xffffffffUL)
|
401
|
+
# define Z_U4 unsigned short
|
402
|
+
# endif
|
403
|
+
#endif
|
404
|
+
|
405
|
+
#ifdef Z_U4
|
406
|
+
typedef Z_U4 z_crc_t;
|
407
|
+
#else
|
408
|
+
typedef unsigned long z_crc_t;
|
409
|
+
#endif
|
410
|
+
|
411
|
+
#ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */
|
412
|
+
# define Z_HAVE_UNISTD_H
|
413
|
+
#endif
|
414
|
+
|
415
|
+
#ifdef HAVE_STDARG_H /* may be set to #if 1 by ./configure */
|
416
|
+
# define Z_HAVE_STDARG_H
|
417
|
+
#endif
|
418
|
+
|
419
|
+
#ifdef STDC
|
420
|
+
# ifndef Z_SOLO
|
421
|
+
# include <sys/types.h> /* for off_t */
|
422
|
+
# endif
|
423
|
+
#endif
|
424
|
+
|
425
|
+
#if defined(STDC) || defined(Z_HAVE_STDARG_H)
|
426
|
+
# ifndef Z_SOLO
|
427
|
+
# include <stdarg.h> /* for va_list */
|
428
|
+
# endif
|
429
|
+
#endif
|
430
|
+
|
431
|
+
#ifdef _WIN32
|
432
|
+
# ifndef Z_SOLO
|
433
|
+
# include <stddef.h> /* for wchar_t */
|
434
|
+
# endif
|
435
|
+
#endif
|
436
|
+
|
437
|
+
/* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and
|
438
|
+
* "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even
|
439
|
+
* though the former does not conform to the LFS document), but considering
|
440
|
+
* both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as
|
441
|
+
* equivalently requesting no 64-bit operations
|
442
|
+
*/
|
443
|
+
#if defined(_LARGEFILE64_SOURCE) && -_LARGEFILE64_SOURCE - -1 == 1
|
444
|
+
# undef _LARGEFILE64_SOURCE
|
445
|
+
#endif
|
446
|
+
|
447
|
+
#if defined(__WATCOMC__) && !defined(Z_HAVE_UNISTD_H)
|
448
|
+
# define Z_HAVE_UNISTD_H
|
449
|
+
#endif
|
450
|
+
#ifndef Z_SOLO
|
451
|
+
# if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE)
|
452
|
+
# include <unistd.h> /* for SEEK_*, off_t, and _LFS64_LARGEFILE */
|
453
|
+
# ifdef VMS
|
454
|
+
# include <unixio.h> /* for off_t */
|
455
|
+
# endif
|
456
|
+
# ifndef z_off_t
|
457
|
+
# define z_off_t off_t
|
458
|
+
# endif
|
459
|
+
# endif
|
460
|
+
#endif
|
461
|
+
|
462
|
+
#if defined(_LFS64_LARGEFILE) && _LFS64_LARGEFILE-0
|
463
|
+
# define Z_LFS64
|
464
|
+
#endif
|
465
|
+
|
466
|
+
#if defined(_LARGEFILE64_SOURCE) && defined(Z_LFS64)
|
467
|
+
# define Z_LARGE64
|
468
|
+
#endif
|
469
|
+
|
470
|
+
#if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS-0 == 64 && defined(Z_LFS64)
|
471
|
+
# define Z_WANT64
|
472
|
+
#endif
|
473
|
+
|
474
|
+
#if !defined(SEEK_SET) && !defined(Z_SOLO)
|
475
|
+
# define SEEK_SET 0 /* Seek from beginning of file. */
|
476
|
+
# define SEEK_CUR 1 /* Seek from current position. */
|
477
|
+
# define SEEK_END 2 /* Set file pointer to EOF plus "offset" */
|
478
|
+
#endif
|
479
|
+
|
480
|
+
#ifndef z_off_t
|
481
|
+
# define z_off_t long
|
482
|
+
#endif
|
483
|
+
|
484
|
+
#if !defined(_WIN32) && defined(Z_LARGE64)
|
485
|
+
# define z_off64_t off64_t
|
486
|
+
#else
|
487
|
+
# if defined(_WIN32) && !defined(__GNUC__) && !defined(Z_SOLO)
|
488
|
+
# define z_off64_t __int64
|
489
|
+
# else
|
490
|
+
# define z_off64_t z_off_t
|
491
|
+
# endif
|
492
|
+
#endif
|
493
|
+
|
494
|
+
/* MVS linker does not support external names larger than 8 bytes */
|
495
|
+
#if defined(__MVS__)
|
496
|
+
#pragma map(deflateInit_,"DEIN")
|
497
|
+
#pragma map(deflateInit2_,"DEIN2")
|
498
|
+
#pragma map(deflateEnd,"DEEND")
|
499
|
+
#pragma map(deflateBound,"DEBND")
|
500
|
+
#pragma map(inflateInit_,"ININ")
|
501
|
+
#pragma map(inflateInit2_,"ININ2")
|
502
|
+
#pragma map(inflateEnd,"INEND")
|
503
|
+
#pragma map(inflateSync,"INSY")
|
504
|
+
#pragma map(inflateSetDictionary,"INSEDI")
|
505
|
+
#pragma map(compressBound,"CMBND")
|
506
|
+
#pragma map(inflate_table,"INTABL")
|
507
|
+
#pragma map(inflate_fast,"INFA")
|
508
|
+
#pragma map(inflate_copyright,"INCOPY")
|
509
|
+
#endif
|
510
|
+
|
511
|
+
#endif /* ZCONF_H */
|