cairo 1.15.9-x86-mingw32 → 1.15.10-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.
- checksums.yaml +4 -4
- data/NEWS +20 -0
- data/Rakefile +9 -7
- data/ext/cairo/rb_cairo.h +1 -1
- data/lib/2.2/cairo.so +0 -0
- data/lib/2.3/cairo.so +0 -0
- data/lib/2.4/cairo.so +0 -0
- data/lib/cairo.rb +3 -3
- data/test/cairo-test-utils.rb +8 -4
- data/test/test_context.rb +1 -1
- data/test/test_font_face.rb +1 -1
- data/test/test_recording_surface.rb +1 -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 +78 -28
- 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/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +1 -1
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +1 -1
- 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 +1 -1
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1211.dll +0 -0
- data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +56 -16
- data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +11 -2
- data/vendor/local/etc/fonts/conf.d/45-latin.conf +4 -0
- data/vendor/local/etc/fonts/conf.d/60-latin.conf +1 -0
- data/vendor/local/include/cairo/cairo-pdf.h +7 -8
- data/vendor/local/include/cairo/cairo-version.h +1 -1
- data/vendor/local/include/fontconfig/fontconfig.h +3 -2
- data/vendor/local/include/freetype2/freetype/config/ftconfig.h +10 -1
- data/vendor/local/include/freetype2/freetype/config/ftheader.h +14 -1
- data/vendor/local/include/freetype2/freetype/config/ftoption.h +79 -22
- data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +1 -1
- data/vendor/local/include/freetype2/freetype/freetype.h +616 -400
- data/vendor/local/include/freetype2/freetype/ftadvanc.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftautoh.h +32 -10
- data/vendor/local/include/freetype2/freetype/ftbbox.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbdf.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbitmap.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbzip2.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftcache.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftcffdrv.h +47 -1
- data/vendor/local/include/freetype2/freetype/ftchapters.h +1 -0
- data/vendor/local/include/freetype2/freetype/ftcid.h +1 -1
- data/vendor/local/include/freetype2/freetype/fterrdef.h +5 -1
- data/vendor/local/include/freetype2/freetype/fterrors.h +5 -5
- data/vendor/local/include/freetype2/freetype/ftfntfmt.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftgasp.h +12 -4
- data/vendor/local/include/freetype2/freetype/ftglyph.h +11 -2
- data/vendor/local/include/freetype2/freetype/ftgxval.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftgzip.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftimage.h +12 -12
- data/vendor/local/include/freetype2/freetype/ftincrem.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftlcdfil.h +46 -10
- data/vendor/local/include/freetype2/freetype/ftlist.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftlzw.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftmac.h +6 -5
- data/vendor/local/include/freetype2/freetype/ftmm.h +147 -58
- data/vendor/local/include/freetype2/freetype/ftmodapi.h +46 -3
- data/vendor/local/include/freetype2/freetype/ftmoderr.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftotval.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftoutln.h +4 -1
- data/vendor/local/include/freetype2/freetype/ftpcfdrv.h +105 -0
- data/vendor/local/include/freetype2/freetype/ftpfr.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftrender.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsizes.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsnames.h +117 -30
- data/vendor/local/include/freetype2/freetype/ftstroke.h +2 -2
- data/vendor/local/include/freetype2/freetype/ftsynth.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsystem.h +1 -1
- data/vendor/local/include/freetype2/freetype/fttrigon.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftttdrv.h +5 -6
- data/vendor/local/include/freetype2/freetype/fttypes.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftwinfnt.h +1 -1
- data/vendor/local/include/freetype2/freetype/t1tables.h +3 -3
- data/vendor/local/include/freetype2/freetype/ttnameid.h +313 -314
- data/vendor/local/include/freetype2/freetype/tttables.h +190 -173
- data/vendor/local/include/freetype2/freetype/tttags.h +7 -1
- data/vendor/local/include/freetype2/freetype/ttunpat.h +2 -2
- data/vendor/local/include/freetype2/ft2build.h +1 -1
- data/vendor/local/include/libpng16/png.h +29 -18
- data/vendor/local/include/libpng16/pngconf.h +1 -1
- data/vendor/local/include/libpng16/pnglibconf.h +5 -2
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +2 -2
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +1 -1
- data/vendor/local/include/libxml2/libxml/xmlreader.h +1 -1
- data/vendor/local/include/libxml2/libxml/xmlversion.h +4 -4
- data/vendor/local/include/png.h +29 -18
- data/vendor/local/include/pngconf.h +1 -1
- data/vendor/local/include/pnglibconf.h +5 -2
- data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +2 -2
- data/vendor/local/lib/fontconfig.def +1 -1
- 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 +2 -2
- 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 +2 -2
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libcairo.la +2 -2
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.la +1 -1
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +2 -2
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +2 -2
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +2 -2
- data/vendor/local/lib/libxml2.a +0 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.la +1 -1
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-png.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-script.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo.pc +1 -1
- data/vendor/local/lib/pkgconfig/fontconfig.pc +2 -2
- data/vendor/local/lib/pkgconfig/freetype2.pc +1 -1
- data/vendor/local/lib/pkgconfig/libpng.pc +2 -1
- data/vendor/local/lib/pkgconfig/libpng16.pc +2 -1
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +1 -1
- data/vendor/local/lib/xml2Conf.sh +1 -1
- data/vendor/local/share/aclocal/freetype2.m4 +1 -1
- data/vendor/local/share/aclocal/libxml.m4 +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/Copyright +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testHTML.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testSAX.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testXPath.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/xmllint.c +78 -78
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/DOM.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/FAQ.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/encoding.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xml +256 -256
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xsl +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/book1.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/home.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/left.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-DOCBparser.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLparser.html +4 -4
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLtree.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX2.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-c14n.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-catalog.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-chvalid.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-debugXML.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-dict.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-encoding.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-entities.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-globals.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-hash.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-lib.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-list.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanoftp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanohttp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parser.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parserInternals.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-pattern.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-relaxng.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schemasInternals.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schematron.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-threads.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-tree.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-uri.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-valid.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xinclude.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xlink.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlIO.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlautomata.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlerror.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlexports.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmemory.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmodule.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlreader.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlregexp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlsave.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemas.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemastypes.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlstring.html +3 -3
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlunicode.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlversion.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlwriter.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpath.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpathInternals.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpointer.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xzlib.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/right.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/up.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/libxml.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse3.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse4.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/redhat.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/structure.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test1.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test2.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test3.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/testWriter.c +16 -16
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.c +1 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tst.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apa.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apb.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apc.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apd.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ape.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apf.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apg.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/aph.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/api.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s02.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s03.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s04.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s05.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s06.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s07.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s08.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s09.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddattribute.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddkeyword.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeconvert.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includegetattribute.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includekeyword.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includexpath.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ix01.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/xmltutorial.pdf +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/w3c.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/writer.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xml.html +154 -8
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.res +0 -0
- data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +56 -16
- data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +11 -2
- data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +4 -0
- data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +1 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +17 -25
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +42 -53
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +48 -63
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +68 -78
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +34 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +82 -92
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +50 -61
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +18 -27
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +22 -32
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +64 -79
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +21 -30
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +99 -125
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +31 -41
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +43 -56
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Tags-and-Links.html +23 -29
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +41 -48
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +19 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +56 -72
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +28 -39
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +39 -51
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +34 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +45 -57
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +62 -79
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +18 -27
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +53 -95
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +40 -53
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +71 -87
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +49 -57
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +158 -189
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +76 -92
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +146 -164
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +234 -264
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +104 -119
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +236 -6
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +62 -63
- data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +69 -70
- data/vendor/local/share/gtk-doc/html/cairo/index-1.14.html +11 -12
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +59 -60
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +35 -36
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +28 -29
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +39 -40
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +510 -511
- data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -5
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/left-insensitive.png +0 -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 +160 -142
- data/vendor/local/share/gtk-doc/html/cairo/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +4 -4
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +3 -3
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +1 -1
- data/vendor/local/share/license/cairo/README +1 -1
- data/vendor/local/share/license/fontconfig/README +58 -2
- data/vendor/local/share/license/freetype/README +5 -5
- data/vendor/local/share/license/freetype/README.git +1 -1
- data/vendor/local/share/license/libpng/README +6 -6
- data/vendor/local/share/license/libxml2/README.zOS +212 -0
- data/vendor/local/share/man/man1/freetype-config.1 +44 -6
- data/vendor/local/share/man/man3/libpng.3 +106 -48
- data/vendor/local/share/man/man3/libpngpf.3 +4 -4
- data/vendor/local/share/man/man5/png.5 +5 -5
- metadata +175 -174
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +0 -764
@@ -1,7 +1,7 @@
|
|
1
1
|
|
2
2
|
/* pngconf.h - machine configurable file for libpng
|
3
3
|
*
|
4
|
-
* libpng version 1.6.
|
4
|
+
* libpng version 1.6.32, August 24, 2017
|
5
5
|
*
|
6
6
|
* Copyright (c) 1998-2002,2004,2006-2016 Glenn Randers-Pehrson
|
7
7
|
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/* pnglibconf.h - library build configuration */
|
2
2
|
|
3
|
-
/* libpng version 1.6.
|
3
|
+
/* libpng version 1.6.32, August 24, 2017 */
|
4
4
|
|
5
|
-
/* Copyright (c) 1998-
|
5
|
+
/* Copyright (c) 1998-2017 Glenn Randers-Pehrson */
|
6
6
|
|
7
7
|
/* This code is released under the libpng license. */
|
8
8
|
/* For conditions of distribution and use, see the disclaimer */
|
@@ -82,6 +82,7 @@
|
|
82
82
|
#define PNG_READ_USER_TRANSFORM_SUPPORTED
|
83
83
|
#define PNG_READ_bKGD_SUPPORTED
|
84
84
|
#define PNG_READ_cHRM_SUPPORTED
|
85
|
+
#define PNG_READ_eXIf_SUPPORTED
|
85
86
|
#define PNG_READ_gAMA_SUPPORTED
|
86
87
|
#define PNG_READ_hIST_SUPPORTED
|
87
88
|
#define PNG_READ_iCCP_SUPPORTED
|
@@ -151,6 +152,7 @@
|
|
151
152
|
#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
|
152
153
|
#define PNG_WRITE_bKGD_SUPPORTED
|
153
154
|
#define PNG_WRITE_cHRM_SUPPORTED
|
155
|
+
#define PNG_WRITE_eXIf_SUPPORTED
|
154
156
|
#define PNG_WRITE_gAMA_SUPPORTED
|
155
157
|
#define PNG_WRITE_hIST_SUPPORTED
|
156
158
|
#define PNG_WRITE_iCCP_SUPPORTED
|
@@ -168,6 +170,7 @@
|
|
168
170
|
#define PNG_WRITE_zTXt_SUPPORTED
|
169
171
|
#define PNG_bKGD_SUPPORTED
|
170
172
|
#define PNG_cHRM_SUPPORTED
|
173
|
+
#define PNG_eXIf_SUPPORTED
|
171
174
|
#define PNG_gAMA_SUPPORTED
|
172
175
|
#define PNG_hIST_SUPPORTED
|
173
176
|
#define PNG_iCCP_SUPPORTED
|
@@ -18,8 +18,8 @@ get_filename_component(_libxml2_rootdir ${CMAKE_CURRENT_LIST_DIR}/../../../ ABSO
|
|
18
18
|
|
19
19
|
set(LIBXML2_VERSION_MAJOR 2)
|
20
20
|
set(LIBXML2_VERSION_MINOR 9)
|
21
|
-
set(LIBXML2_VERSION_MICRO
|
22
|
-
set(LIBXML2_VERSION_STRING "2.9.
|
21
|
+
set(LIBXML2_VERSION_MICRO 6)
|
22
|
+
set(LIBXML2_VERSION_STRING "2.9.6")
|
23
23
|
set(LIBXML2_INSTALL_PREFIX ${_libxml2_rootdir})
|
24
24
|
set(LIBXML2_INCLUDE_DIRS ${_libxml2_rootdir}/include ${_libxml2_rootdir}/include/libxml2)
|
25
25
|
set(LIBXML2_LIBRARY_DIR ${_libxml2_rootdir}/lib)
|
Binary file
|
Binary file
|
@@ -23,8 +23,8 @@ dependency_libs=' -R/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib -L/ho
|
|
23
23
|
weak_library_names=''
|
24
24
|
|
25
25
|
# Version information for libcairo-gobject.
|
26
|
-
current=
|
27
|
-
age=
|
26
|
+
current=11510
|
27
|
+
age=11508
|
28
28
|
revision=0
|
29
29
|
|
30
30
|
# Is this an already installed library?
|
Binary file
|
Binary file
|
@@ -23,8 +23,8 @@ dependency_libs=' -L/home/vagrant/rcairo.win32/vendor/local/lib /home/vagrant/rc
|
|
23
23
|
weak_library_names=''
|
24
24
|
|
25
25
|
# Version information for libcairo-script-interpreter.
|
26
|
-
current=
|
27
|
-
age=
|
26
|
+
current=11510
|
27
|
+
age=11508
|
28
28
|
revision=0
|
29
29
|
|
30
30
|
# Is this an already installed library?
|
data/vendor/local/lib/libcairo.a
CHANGED
Binary file
|
Binary file
|
@@ -23,8 +23,8 @@ dependency_libs=' -L/home/vagrant/rcairo.win32/vendor/local/lib -lpthread /home/
|
|
23
23
|
weak_library_names=''
|
24
24
|
|
25
25
|
# Version information for libcairo.
|
26
|
-
current=
|
27
|
-
age=
|
26
|
+
current=11510
|
27
|
+
age=11508
|
28
28
|
revision=0
|
29
29
|
|
30
30
|
# Is this an already installed library?
|
Binary file
|
Binary file
|
Binary file
|
@@ -23,8 +23,8 @@ dependency_libs=' -L/home/vagrant/rcairo.win32/vendor/local/lib /home/vagrant/rc
|
|
23
23
|
weak_library_names=''
|
24
24
|
|
25
25
|
# Version information for libfreetype.
|
26
|
-
current=
|
27
|
-
age=
|
26
|
+
current=21
|
27
|
+
age=15
|
28
28
|
revision=0
|
29
29
|
|
30
30
|
# Is this an already installed library?
|
Binary file
|
data/vendor/local/lib/libpng.a
CHANGED
Binary file
|
Binary file
|
data/vendor/local/lib/libpng.la
CHANGED
data/vendor/local/lib/libpng16.a
CHANGED
Binary file
|
Binary file
|
data/vendor/local/lib/libxml2.a
CHANGED
Binary file
|
Binary file
|
data/vendor/local/lib/libxml2.la
CHANGED
data/vendor/local/lib/libz.dll.a
CHANGED
Binary file
|
@@ -5,7 +5,7 @@ includedir=${prefix}/include
|
|
5
5
|
|
6
6
|
Name: cairo
|
7
7
|
Description: Multi-platform 2D graphics library
|
8
|
-
Version: 1.15.
|
8
|
+
Version: 1.15.8
|
9
9
|
|
10
10
|
Requires.private: gobject-2.0 glib-2.0 >= 2.14 pixman-1 >= 0.30.0 fontconfig >= 2.2.95 freetype2 >= 9.7.3 libpng
|
11
11
|
Libs: -L${libdir} -lcairo
|
@@ -10,9 +10,9 @@ cachedir=LOCAL_APPDATA_FONTCONFIG_CACHE
|
|
10
10
|
|
11
11
|
Name: Fontconfig
|
12
12
|
Description: Font configuration and customization library
|
13
|
-
Version: 2.12.
|
13
|
+
Version: 2.12.4
|
14
14
|
Requires: freetype2
|
15
15
|
Requires.private: libxml-2.0
|
16
16
|
Libs: -L${libdir} -lfontconfig
|
17
17
|
Libs.private: -L/home/vagrant/rcairo.win32/vendor/local/lib -lfreetype -L/home/vagrant/rcairo.win32/vendor/local/lib -lxml2
|
18
|
-
Cflags: -I${includedir} -I/home/vagrant/rcairo.win32/vendor/local/include/freetype2 -I/home/vagrant/rcairo.win32/vendor/local/include -I/home/vagrant/rcairo.win32/vendor/local/include
|
18
|
+
Cflags: -I${includedir} -I/home/vagrant/rcairo.win32/vendor/local/include/freetype2 -I/home/vagrant/rcairo.win32/vendor/local/include/libpng16 -I/home/vagrant/rcairo.win32/vendor/local/include -I/home/vagrant/rcairo.win32/vendor/local/include/libxml2
|
@@ -6,7 +6,7 @@ includedir=/home/vagrant/rcairo.win32/vendor/local/include
|
|
6
6
|
Name: FreeType 2
|
7
7
|
URL: http://freetype.org
|
8
8
|
Description: A free, high-quality, and portable font engine.
|
9
|
-
Version:
|
9
|
+
Version: 21.0.15
|
10
10
|
Requires:
|
11
11
|
Requires.private: zlib, libpng
|
12
12
|
Libs: -L${libdir} -lfreetype
|
@@ -4,5 +4,5 @@
|
|
4
4
|
XML2_LIBDIR="-L/home/vagrant/rcairo.win32/vendor/local/lib"
|
5
5
|
XML2_LIBS="-lxml2 -L/home/vagrant/rcairo.win32/vendor/local/lib -lz "
|
6
6
|
XML2_INCLUDEDIR="-I/home/vagrant/rcairo.win32/vendor/local/include/libxml2"
|
7
|
-
MODULE_VERSION="xml2-2.9.
|
7
|
+
MODULE_VERSION="xml2-2.9.6"
|
8
8
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Configure paths for FreeType2
|
2
2
|
# Marcelo Magallon 2001-10-26, based on gtk.m4 by Owen Taylor
|
3
3
|
#
|
4
|
-
# Copyright 2001-
|
4
|
+
# Copyright 2001-2017 by
|
5
5
|
# David Turner, Robert Wilhelm, and Werner Lemberg.
|
6
6
|
#
|
7
7
|
# This file is part of the FreeType project, and may only be used, modified,
|
@@ -170,7 +170,7 @@ main()
|
|
170
170
|
echo "*** If you have an old version installed, it is best to remove it, although"
|
171
171
|
echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
|
172
172
|
[ echo "*** The test program failed to compile or link. See the file config.log for the"
|
173
|
-
echo "*** exact error that
|
173
|
+
echo "*** exact error that occurred. This usually means LIBXML was incorrectly installed"
|
174
174
|
echo "*** or that you have moved LIBXML since it was installed. In the latter case, you"
|
175
175
|
echo "*** may want to edit the xml2-config script: $XML2_CONFIG" ])
|
176
176
|
CPPFLAGS="$ac_save_CPPFLAGS"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -2991,124 +2991,124 @@ static void showVersion(const char *name) {
|
|
2991
2991
|
fprintf(stderr, "\n");
|
2992
2992
|
}
|
2993
2993
|
|
2994
|
-
static void usage(const char *name) {
|
2995
|
-
|
2994
|
+
static void usage(FILE *f, const char *name) {
|
2995
|
+
fprintf(f, "Usage : %s [options] XMLfiles ...\n", name);
|
2996
2996
|
#ifdef LIBXML_OUTPUT_ENABLED
|
2997
|
-
|
2997
|
+
fprintf(f, "\tParse the XML files and output the result of the parsing\n");
|
2998
2998
|
#else
|
2999
|
-
|
2999
|
+
fprintf(f, "\tParse the XML files\n");
|
3000
3000
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
3001
|
-
|
3001
|
+
fprintf(f, "\t--version : display the version of the XML library used\n");
|
3002
3002
|
#ifdef LIBXML_DEBUG_ENABLED
|
3003
|
-
|
3004
|
-
|
3005
|
-
|
3003
|
+
fprintf(f, "\t--debug : dump a debug tree of the in-memory document\n");
|
3004
|
+
fprintf(f, "\t--shell : run a navigating shell\n");
|
3005
|
+
fprintf(f, "\t--debugent : debug the entities defined in the document\n");
|
3006
3006
|
#else
|
3007
3007
|
#ifdef LIBXML_READER_ENABLED
|
3008
|
-
|
3008
|
+
fprintf(f, "\t--debug : dump the nodes content when using --stream\n");
|
3009
3009
|
#endif /* LIBXML_READER_ENABLED */
|
3010
3010
|
#endif
|
3011
3011
|
#ifdef LIBXML_TREE_ENABLED
|
3012
|
-
|
3012
|
+
fprintf(f, "\t--copy : used to test the internal copy implementation\n");
|
3013
3013
|
#endif /* LIBXML_TREE_ENABLED */
|
3014
|
-
|
3015
|
-
|
3016
|
-
|
3017
|
-
|
3018
|
-
|
3019
|
-
|
3020
|
-
|
3021
|
-
|
3022
|
-
|
3023
|
-
|
3024
|
-
|
3014
|
+
fprintf(f, "\t--recover : output what was parsable on broken XML documents\n");
|
3015
|
+
fprintf(f, "\t--huge : remove any internal arbitrary parser limits\n");
|
3016
|
+
fprintf(f, "\t--noent : substitute entity references by their value\n");
|
3017
|
+
fprintf(f, "\t--noenc : ignore any encoding specified inside the document\n");
|
3018
|
+
fprintf(f, "\t--noout : don't output the result tree\n");
|
3019
|
+
fprintf(f, "\t--path 'paths': provide a set of paths for resources\n");
|
3020
|
+
fprintf(f, "\t--load-trace : print trace of all external entities loaded\n");
|
3021
|
+
fprintf(f, "\t--nonet : refuse to fetch DTDs or entities over network\n");
|
3022
|
+
fprintf(f, "\t--nocompact : do not generate compact text nodes\n");
|
3023
|
+
fprintf(f, "\t--htmlout : output results as HTML\n");
|
3024
|
+
fprintf(f, "\t--nowrap : do not put HTML doc wrapper\n");
|
3025
3025
|
#ifdef LIBXML_VALID_ENABLED
|
3026
|
-
|
3027
|
-
|
3028
|
-
|
3029
|
-
|
3026
|
+
fprintf(f, "\t--valid : validate the document in addition to std well-formed check\n");
|
3027
|
+
fprintf(f, "\t--postvalid : do a posteriori validation, i.e after parsing\n");
|
3028
|
+
fprintf(f, "\t--dtdvalid URL : do a posteriori validation against a given DTD\n");
|
3029
|
+
fprintf(f, "\t--dtdvalidfpi FPI : same but name the DTD with a Public Identifier\n");
|
3030
3030
|
#endif /* LIBXML_VALID_ENABLED */
|
3031
|
-
|
3032
|
-
|
3033
|
-
|
3034
|
-
|
3031
|
+
fprintf(f, "\t--timing : print some timings\n");
|
3032
|
+
fprintf(f, "\t--output file or -o file: save to a given file\n");
|
3033
|
+
fprintf(f, "\t--repeat : repeat 100 times, for timing or profiling\n");
|
3034
|
+
fprintf(f, "\t--insert : ad-hoc test for valid insertions\n");
|
3035
3035
|
#ifdef LIBXML_OUTPUT_ENABLED
|
3036
3036
|
#ifdef HAVE_ZLIB_H
|
3037
|
-
|
3037
|
+
fprintf(f, "\t--compress : turn on gzip compression of output\n");
|
3038
3038
|
#endif
|
3039
3039
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
3040
3040
|
#ifdef LIBXML_HTML_ENABLED
|
3041
|
-
|
3042
|
-
|
3043
|
-
|
3041
|
+
fprintf(f, "\t--html : use the HTML parser\n");
|
3042
|
+
fprintf(f, "\t--xmlout : force to use the XML serializer when using --html\n");
|
3043
|
+
fprintf(f, "\t--nodefdtd : do not default HTML doctype\n");
|
3044
3044
|
#endif
|
3045
3045
|
#ifdef LIBXML_PUSH_ENABLED
|
3046
|
-
|
3047
|
-
|
3046
|
+
fprintf(f, "\t--push : use the push mode of the parser\n");
|
3047
|
+
fprintf(f, "\t--pushsmall : use the push mode of the parser using tiny increments\n");
|
3048
3048
|
#endif /* LIBXML_PUSH_ENABLED */
|
3049
3049
|
#ifdef HAVE_MMAP
|
3050
|
-
|
3050
|
+
fprintf(f, "\t--memory : parse from memory\n");
|
3051
3051
|
#endif
|
3052
|
-
|
3053
|
-
|
3054
|
-
|
3055
|
-
|
3052
|
+
fprintf(f, "\t--maxmem nbbytes : limits memory allocation to nbbytes bytes\n");
|
3053
|
+
fprintf(f, "\t--nowarning : do not emit warnings from parser/validator\n");
|
3054
|
+
fprintf(f, "\t--noblanks : drop (ignorable?) blanks spaces\n");
|
3055
|
+
fprintf(f, "\t--nocdata : replace cdata section with text nodes\n");
|
3056
3056
|
#ifdef LIBXML_OUTPUT_ENABLED
|
3057
|
-
|
3058
|
-
|
3059
|
-
|
3060
|
-
|
3061
|
-
|
3062
|
-
|
3063
|
-
|
3057
|
+
fprintf(f, "\t--format : reformat/reindent the output\n");
|
3058
|
+
fprintf(f, "\t--encode encoding : output in the given encoding\n");
|
3059
|
+
fprintf(f, "\t--dropdtd : remove the DOCTYPE of the input docs\n");
|
3060
|
+
fprintf(f, "\t--pretty STYLE : pretty-print in a particular style\n");
|
3061
|
+
fprintf(f, "\t 0 Do not pretty print\n");
|
3062
|
+
fprintf(f, "\t 1 Format the XML content, as --format\n");
|
3063
|
+
fprintf(f, "\t 2 Add whitespace inside tags, preserving content\n");
|
3064
3064
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
3065
|
-
|
3066
|
-
|
3067
|
-
|
3065
|
+
fprintf(f, "\t--c14n : save in W3C canonical format v1.0 (with comments)\n");
|
3066
|
+
fprintf(f, "\t--c14n11 : save in W3C canonical format v1.1 (with comments)\n");
|
3067
|
+
fprintf(f, "\t--exc-c14n : save in W3C exclusive canonical format (with comments)\n");
|
3068
3068
|
#ifdef LIBXML_C14N_ENABLED
|
3069
3069
|
#endif /* LIBXML_C14N_ENABLED */
|
3070
|
-
|
3071
|
-
|
3070
|
+
fprintf(f, "\t--nsclean : remove redundant namespace declarations\n");
|
3071
|
+
fprintf(f, "\t--testIO : test user I/O support\n");
|
3072
3072
|
#ifdef LIBXML_CATALOG_ENABLED
|
3073
|
-
|
3074
|
-
|
3075
|
-
|
3076
|
-
|
3073
|
+
fprintf(f, "\t--catalogs : use SGML catalogs from $SGML_CATALOG_FILES\n");
|
3074
|
+
fprintf(f, "\t otherwise XML Catalogs starting from \n");
|
3075
|
+
fprintf(f, "\t %s are activated by default\n", XML_XML_DEFAULT_CATALOG);
|
3076
|
+
fprintf(f, "\t--nocatalogs: deactivate all catalogs\n");
|
3077
3077
|
#endif
|
3078
|
-
|
3078
|
+
fprintf(f, "\t--auto : generate a small doc on the fly\n");
|
3079
3079
|
#ifdef LIBXML_XINCLUDE_ENABLED
|
3080
|
-
|
3081
|
-
|
3082
|
-
|
3080
|
+
fprintf(f, "\t--xinclude : do XInclude processing\n");
|
3081
|
+
fprintf(f, "\t--noxincludenode : same but do not generate XInclude nodes\n");
|
3082
|
+
fprintf(f, "\t--nofixup-base-uris : do not fixup xml:base uris\n");
|
3083
3083
|
#endif
|
3084
|
-
|
3085
|
-
|
3084
|
+
fprintf(f, "\t--loaddtd : fetch external DTD\n");
|
3085
|
+
fprintf(f, "\t--dtdattr : loaddtd + populate the tree with inherited attributes \n");
|
3086
3086
|
#ifdef LIBXML_READER_ENABLED
|
3087
|
-
|
3088
|
-
|
3087
|
+
fprintf(f, "\t--stream : use the streaming interface to process very large files\n");
|
3088
|
+
fprintf(f, "\t--walker : create a reader and walk though the resulting doc\n");
|
3089
3089
|
#endif /* LIBXML_READER_ENABLED */
|
3090
3090
|
#ifdef LIBXML_PATTERN_ENABLED
|
3091
|
-
|
3091
|
+
fprintf(f, "\t--pattern pattern_value : test the pattern support\n");
|
3092
3092
|
#endif
|
3093
|
-
|
3093
|
+
fprintf(f, "\t--chkregister : verify the node registration code\n");
|
3094
3094
|
#ifdef LIBXML_SCHEMAS_ENABLED
|
3095
|
-
|
3096
|
-
|
3095
|
+
fprintf(f, "\t--relaxng schema : do RelaxNG validation against the schema\n");
|
3096
|
+
fprintf(f, "\t--schema schema : do validation against the WXS schema\n");
|
3097
3097
|
#endif
|
3098
3098
|
#ifdef LIBXML_SCHEMATRON_ENABLED
|
3099
|
-
|
3099
|
+
fprintf(f, "\t--schematron schema : do validation against a schematron\n");
|
3100
3100
|
#endif
|
3101
3101
|
#ifdef LIBXML_SAX1_ENABLED
|
3102
|
-
|
3102
|
+
fprintf(f, "\t--sax1: use the old SAX1 interfaces for processing\n");
|
3103
3103
|
#endif
|
3104
|
-
|
3105
|
-
|
3104
|
+
fprintf(f, "\t--sax: do not build a tree but work just at the SAX level\n");
|
3105
|
+
fprintf(f, "\t--oldxml10: use XML-1.0 parsing rules before the 5th edition\n");
|
3106
3106
|
#ifdef LIBXML_XPATH_ENABLED
|
3107
|
-
|
3107
|
+
fprintf(f, "\t--xpath expr: evaluate the XPath expression, imply --noout\n");
|
3108
3108
|
#endif
|
3109
3109
|
|
3110
|
-
|
3111
|
-
|
3110
|
+
fprintf(f, "\nLibxml project home page: http://xmlsoft.org/\n");
|
3111
|
+
fprintf(f, "To report bugs or get some help check: http://xmlsoft.org/bugs.html\n");
|
3112
3112
|
}
|
3113
3113
|
|
3114
3114
|
static void registerNode(xmlNodePtr node)
|
@@ -3138,7 +3138,7 @@ main(int argc, char **argv) {
|
|
3138
3138
|
const char* indent;
|
3139
3139
|
|
3140
3140
|
if (argc <= 1) {
|
3141
|
-
usage(argv[0]);
|
3141
|
+
usage(stderr, argv[0]);
|
3142
3142
|
return(1);
|
3143
3143
|
}
|
3144
3144
|
LIBXML_TEST_VERSION
|
@@ -3490,7 +3490,7 @@ main(int argc, char **argv) {
|
|
3490
3490
|
options |= XML_PARSE_OLD10;
|
3491
3491
|
} else {
|
3492
3492
|
fprintf(stderr, "Unknown option %s\n", argv[i]);
|
3493
|
-
usage(argv[0]);
|
3493
|
+
usage(stderr, argv[0]);
|
3494
3494
|
return(1);
|
3495
3495
|
}
|
3496
3496
|
}
|
@@ -3784,7 +3784,7 @@ main(int argc, char **argv) {
|
|
3784
3784
|
xmlGenericError(xmlGenericErrorContext, "</body></html>\n");
|
3785
3785
|
}
|
3786
3786
|
if ((files == 0) && (!generate) && (version == 0)) {
|
3787
|
-
usage(argv[0]);
|
3787
|
+
usage(stderr, argv[0]);
|
3788
3788
|
}
|
3789
3789
|
#ifdef LIBXML_SCHEMATRON_ENABLED
|
3790
3790
|
if (wxschematron != NULL)
|