mathematical 1.5.0 → 1.5.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +27 -0
- data/Rakefile +5 -9
- data/ext/README.md +21 -0
- data/ext/mathematical/CMakeLists.txt +76 -0
- data/ext/mathematical/FindNewerRubies.cmake +292 -0
- data/ext/mathematical/FindPackageHandleStandardArgs.cmake +58 -0
- data/ext/mathematical/extconf.rb +38 -18
- data/ext/mathematical/lasem/AUTHORS +1 -0
- data/ext/mathematical/lasem/COPYING +482 -0
- data/ext/mathematical/lasem/{docs/reference/lasem/lasem-overrides.txt → ChangeLog} +0 -0
- data/ext/mathematical/lasem/MAINTAINERS +3 -0
- data/ext/mathematical/lasem/Makefile.am +34 -0
- data/ext/mathematical/lasem/Makefile.decl +57 -0
- data/ext/mathematical/lasem/NEWS +117 -0
- data/ext/mathematical/lasem/README +28 -0
- data/ext/mathematical/lasem/RELEASING +85 -0
- data/ext/mathematical/lasem/TODO +50 -0
- data/ext/mathematical/lasem/autogen.sh +177 -0
- data/ext/mathematical/lasem/configure.ac +139 -0
- data/ext/mathematical/lasem/docs/Makefile.am +14 -0
- data/ext/mathematical/lasem/docs/lasem-render-0.6.1 +106 -0
- data/ext/mathematical/lasem/docs/reference/Makefile.am +3 -0
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile.am +205 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml +75 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml +64 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem.types +110 -0
- data/ext/mathematical/lasem/itex2mml/COPYING.itex2MML +3 -0
- data/ext/mathematical/lasem/itex2mml/Makefile.am +37 -0
- data/ext/mathematical/lasem/itex2mml/README.itex2MML +13 -0
- data/ext/mathematical/lasem/lasem.doap +21 -0
- data/ext/mathematical/lasem/m4/introspection.m4 +96 -0
- data/ext/mathematical/lasem/po/ChangeLog +0 -0
- data/ext/mathematical/lasem/po/LINGUAS +28 -0
- data/ext/mathematical/lasem/po/POTFILES.in +195 -0
- data/ext/mathematical/lasem/po/POTFILES.skip +1 -0
- data/ext/mathematical/lasem/po/bs.po +65 -0
- data/ext/mathematical/lasem/po/cs.po +70 -0
- data/ext/mathematical/lasem/po/de.po +68 -0
- data/ext/mathematical/lasem/po/el.po +73 -0
- data/ext/mathematical/lasem/po/es.po +78 -0
- data/ext/mathematical/lasem/po/eu.po +66 -0
- data/ext/mathematical/lasem/po/fr.po +65 -0
- data/ext/mathematical/lasem/po/gl.po +64 -0
- data/ext/mathematical/lasem/po/hu.po +76 -0
- data/ext/mathematical/lasem/po/id.po +69 -0
- data/ext/mathematical/lasem/po/it.po +64 -0
- data/ext/mathematical/lasem/po/lt.po +77 -0
- data/ext/mathematical/lasem/po/lv.po +66 -0
- data/ext/mathematical/lasem/po/nb.po +62 -0
- data/ext/mathematical/lasem/po/oc.po +65 -0
- data/ext/mathematical/lasem/po/pl.po +73 -0
- data/ext/mathematical/lasem/po/pt.po +77 -0
- data/ext/mathematical/lasem/po/pt_BR.po +64 -0
- data/ext/mathematical/lasem/po/ru.po +66 -0
- data/ext/mathematical/lasem/po/sl.po +68 -0
- data/ext/mathematical/lasem/po/sr.po +65 -0
- data/ext/mathematical/lasem/po/sr@latin.po +65 -0
- data/ext/mathematical/lasem/po/sv.po +72 -0
- data/ext/mathematical/lasem/po/tg.po +64 -0
- data/ext/mathematical/lasem/po/tr.po +65 -0
- data/ext/mathematical/lasem/po/zh_CN.po +63 -0
- data/ext/mathematical/lasem/src/Makefile.am +349 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmitex.c +0 -1
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/tests/Makefile.am +34 -0
- data/ext/mathematical/lasem/tests/data/mathml/gtkmathview/README +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/closed.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/multiples.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/standard.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/matrices/matrix-01.tex +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-cr.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-space.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/color.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-2.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-inline.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-01.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/accents.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/script.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/stack.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/subscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/bmpCursor.bmp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/brushedMetal.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpeg.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpegCursor.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaBridge.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaSteps.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaWalk.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tde.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tiffCursor.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/CNN.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/SVG-1.1-monolithic-fixed.dtd +1622 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/TraitAccess.common.es +672 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/advice.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/beep.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/boing_x.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/clock.mp4 +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud-ps411q4app.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q25s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q65float.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75p.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud444q65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudgsq75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudoddq65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudqllo.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/copyright-documents-19990405.html +89 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/disco.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/excuse_me.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/externalscript.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/heroesLanding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image2_b.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/myimage.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pacman.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/plant.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image0.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image5.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image6.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image7.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image8.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image9.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script1.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script10.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script2.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script3.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script4.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script5.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script6.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script7.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script8.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script9.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/svgRef4.css +4 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/welcome.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/xmltree.xml +4 -0
- data/ext/mathematical/lasem/tests/fuzztest.sh +12 -0
- data/ext/mathematical/lasem/tests/suite.ini +27 -0
- data/ext/mathematical/lasem/tools/change-license +3 -0
- data/ext/mathematical/lasem/tools/charlist.dtd +73 -0
- data/ext/mathematical/lasem/tools/entities-to-c.xsl +1067 -0
- data/ext/mathematical/lasem/tools/fuzzxml +243 -0
- data/ext/mathematical/lasem/tools/unicode.xml +44303 -0
- data/ext/mathematical/lasem_overrides.c +25 -4
- data/ext/mathematical/lasem_overrides.h +5 -0
- data/ext/mathematical/lib/liblasem.dylib +0 -0
- data/ext/mathematical/mtex2MML/CONTRIBUTING.md +22 -0
- data/ext/mathematical/mtex2MML/README.md +143 -0
- data/ext/mathematical/mtex2MML/SUPPORTED.md +1214 -0
- data/ext/mathematical/mtex2MML/appveyor.yml +25 -0
- data/ext/mathematical/mtex2MML/build.ps1 +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_C.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_CXX.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdC/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp +375 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log +208 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2 +1137 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make +253 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache +148 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make +251 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make +276 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make +10 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make +683 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make +26 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks +1 -0
- data/ext/mathematical/mtex2MML/build/DartConfiguration.tcl +94 -0
- data/ext/mathematical/mtex2MML/build/libmtex2MML.pc +10 -0
- data/ext/mathematical/mtex2MML/build/parser.output +117661 -0
- data/ext/mathematical/mtex2MML/deps/strdup/package.json +12 -0
- data/ext/mathematical/mtex2MML/deps/uthash/package.json +26 -0
- data/ext/mathematical/mtex2MML/script/bootstrap +30 -0
- data/ext/mathematical/mtex2MML/script/cibuild +11 -0
- data/ext/mathematical/mtex2MML/script/release +27 -0
- data/ext/mathematical/mtex2MML/src/y.output +117655 -0
- data/ext/mathematical/mtex2MML/tests/debug/mtex2MML_debug.cc +21 -0
- data/ext/mathematical/mtex2MML/tests/deps/file2str/package.json +9 -0
- data/ext/mathematical/mtex2MML/tests/deps/trim/package.json +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-1.html +86 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-2.html +148 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-3.html +188 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/arrows-2.html +156 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-1.html +45 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/buildrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue490.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue877.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue937.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/sideset-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/stackrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/subarray-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/substack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/mathtip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/texttip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/toggle-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/Newextarrow-1.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-2.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-3.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-5.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathbin-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathinner-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathopenclose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathord-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathpunct-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/backslashed-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/remap-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/color-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/colorbox-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-1.html +37 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-2.html +79 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/fcolorbox-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/issue446.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/namedcolors-1.html +70 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue775.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-2.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-4.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-5.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/left-right-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-2.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignedat-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalign-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalignno-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-2.html +64 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-2.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/leqalignno-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/split-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noErrors-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noUndefined-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/above-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/abovewithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atop-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atopwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/binom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/cfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/choose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/genfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/issue969.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/overwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue375.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue856.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1c.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1d.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/boxes-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/llap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/lower-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/mathstrut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveleft-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveright-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/newline-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/phantom-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/raise-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/rlap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/shove-1.html +19 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/smash-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/spaces-1.html +18 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/strut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/vcenter-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-2.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/hebrew-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/begingroup-1.html +15 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/def-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/let-1.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-3.html +50 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-5.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-6.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-7.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/Bbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/bf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/boldsymbol-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/cal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/frak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/it-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathcal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathfrak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathscr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathtt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/pmb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/rm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/scr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/sf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/text-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textbf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/texttt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/tt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/smallmatrix-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-1.html +120 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-3.html +138 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/amounts-1.html +46 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-1.html +235 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-2.html +159 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/basics-1.html +139 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/bonds-1.html +256 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/environments-1.html +81 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/isotopes-1.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/math-1.html +101 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/special_symbols-1.html +176 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Rule-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Tiny-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/class-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/cssId-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/require-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/style-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/unicode-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/LaTeX-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/bbox-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/boxed-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cancel-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cases-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/displaylines-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/enclose-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/functions-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mathsize-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mod-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/not-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/pod-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-2.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/eqref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-2.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/notag-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/binaryops-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/dots-1.html +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/relations-1.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-1.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-2.html +31 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-3.html +40 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-4.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-5.html +56 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-6.html +49 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-2.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-3.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-1.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-2.no_tex +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-1.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-2.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/issue490.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/mathtip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/texttip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/toggle-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/Newextarrow-1.xtex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathbin-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathop-2.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/basic-operators/basic-operators-2.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1a.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1b.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1c.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-2.xtex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/fcolorbox-1.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/issue446.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-1c.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-2a.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/leqalignno-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noErrors-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noUndefined-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1151.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1152-1.xtex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-1.xtex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-2.xtex +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/shove-1.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/begingroup-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/def-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/let-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1a.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1b.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-3.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-5.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-6.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-7.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-3.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/amounts-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-1.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-2.no_tex +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/basics-1.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/bonds-1.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/environments-1.no_tex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/isotopes-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/math-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/special_symbols-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/Rule-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/class-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/cssId-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/require-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/style-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/unicode-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/displaylines-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/style-2.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/eqref-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1a.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1b.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-3.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-1.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-2.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-3.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-4.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/TODO.md +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_nesting.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment_with_hline.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column_with_align.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline_and_hdashline.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_vertical_and_horizontal_dashes.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/augmented_matrix.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/basic_array.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/strip_excess_whitespace_in_array_attributes.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/block.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/comments.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/filter.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/inline.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/strict_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/text_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/broken_up_inline_env.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/some_crazy_alignment.html +24 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/brackets.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_filter.html +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_text_filter.html +27 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/double_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_brackets.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_dollars.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_parens.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/mixed.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/parens.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/single_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_ex_spacing.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/spaces_after_rowsep.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/max_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/min_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/maliciousness/just_enough_parsing.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_equations.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_notag_nonumber.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_equation.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_nonumber.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_notag.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/performance/big_file.html +12 -0
- data/ext/mathematical/mtex2MML/tests/generate.py +244 -0
- data/ext/mathematical/mtex2MML/tests/mathjax_generate.py +72 -0
- data/lib/mathematical/version.rb +1 -1
- data/mathematical.gemspec +1 -3
- metadata +699 -23
- data/ext/mathematical/lasem/Makefile +0 -1037
- data/ext/mathematical/lasem/config.h +0 -87
- data/ext/mathematical/lasem/docs/Makefile +0 -793
- data/ext/mathematical/lasem/docs/reference/Makefile +0 -735
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile +0 -1029
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl-list.txt +0 -245
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl.txt +0 -856
- data/ext/mathematical/lasem/itex2mml/Makefile +0 -742
- data/ext/mathematical/lasem/itex2mml/lex.yy.c +0 -6294
- data/ext/mathematical/lasem/itex2mml/y.tab.c +0 -5796
- data/ext/mathematical/lasem/itex2mml/y.tab.h +0 -378
- data/ext/mathematical/lasem/po/Makefile +0 -413
- data/ext/mathematical/lasem/src/Makefile +0 -1343
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c +0 -99
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h +0 -26
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +0 -793
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +0 -96
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +0 -1254
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +0 -129
- data/ext/mathematical/lasem/tests/Makefile +0 -776
@@ -1,129 +0,0 @@
|
|
1
|
-
|
2
|
-
/* Generated data (by glib-mkenums) */
|
3
|
-
|
4
|
-
#ifndef LSM_SVG_ENUM_TYPES_H
|
5
|
-
#define LSM_SVG_ENUM_TYPES_H
|
6
|
-
|
7
|
-
#include <glib-object.h>
|
8
|
-
|
9
|
-
G_BEGIN_DECLS
|
10
|
-
|
11
|
-
/* Enumerations from "lsmsvgenums.h" */
|
12
|
-
|
13
|
-
#define LSM_TYPE_SVG_ANGLE_TYPE (lsm_svg_angle_type_get_type())
|
14
|
-
GType lsm_svg_angle_type_get_type (void) G_GNUC_CONST;
|
15
|
-
|
16
|
-
#define LSM_TYPE_SVG_BLENDING_MODE (lsm_svg_blending_mode_get_type())
|
17
|
-
GType lsm_svg_blending_mode_get_type (void) G_GNUC_CONST;
|
18
|
-
|
19
|
-
#define LSM_TYPE_SVG_ENABLE_BACKGROUND (lsm_svg_enable_background_get_type())
|
20
|
-
GType lsm_svg_enable_background_get_type (void) G_GNUC_CONST;
|
21
|
-
|
22
|
-
#define LSM_TYPE_SVG_PAINT_TYPE (lsm_svg_paint_type_get_type())
|
23
|
-
GType lsm_svg_paint_type_get_type (void) G_GNUC_CONST;
|
24
|
-
|
25
|
-
#define LSM_TYPE_SVG_LENGTH_DIRECTION (lsm_svg_length_direction_get_type())
|
26
|
-
GType lsm_svg_length_direction_get_type (void) G_GNUC_CONST;
|
27
|
-
|
28
|
-
#define LSM_TYPE_SVG_LENGTH_TYPE (lsm_svg_length_type_get_type())
|
29
|
-
GType lsm_svg_length_type_get_type (void) G_GNUC_CONST;
|
30
|
-
|
31
|
-
#define LSM_TYPE_SVG_FILL_RULE (lsm_svg_fill_rule_get_type())
|
32
|
-
GType lsm_svg_fill_rule_get_type (void) G_GNUC_CONST;
|
33
|
-
|
34
|
-
#define LSM_TYPE_SVG_LINE_JOIN (lsm_svg_line_join_get_type())
|
35
|
-
GType lsm_svg_line_join_get_type (void) G_GNUC_CONST;
|
36
|
-
|
37
|
-
#define LSM_TYPE_SVG_LINE_CAP (lsm_svg_line_cap_get_type())
|
38
|
-
GType lsm_svg_line_cap_get_type (void) G_GNUC_CONST;
|
39
|
-
|
40
|
-
#define LSM_TYPE_SVG_TRANSFORM_TYPE (lsm_svg_transform_type_get_type())
|
41
|
-
GType lsm_svg_transform_type_get_type (void) G_GNUC_CONST;
|
42
|
-
|
43
|
-
#define LSM_TYPE_SVG_OVERFLOW (lsm_svg_overflow_get_type())
|
44
|
-
GType lsm_svg_overflow_get_type (void) G_GNUC_CONST;
|
45
|
-
|
46
|
-
#define LSM_TYPE_SVG_PATTERN_UNITS (lsm_svg_pattern_units_get_type())
|
47
|
-
GType lsm_svg_pattern_units_get_type (void) G_GNUC_CONST;
|
48
|
-
|
49
|
-
#define LSM_TYPE_SVG_MARKER_UNITS (lsm_svg_marker_units_get_type())
|
50
|
-
GType lsm_svg_marker_units_get_type (void) G_GNUC_CONST;
|
51
|
-
|
52
|
-
#define LSM_TYPE_SVG_SPREAD_METHOD (lsm_svg_spread_method_get_type())
|
53
|
-
GType lsm_svg_spread_method_get_type (void) G_GNUC_CONST;
|
54
|
-
|
55
|
-
#define LSM_TYPE_SVG_ALIGN (lsm_svg_align_get_type())
|
56
|
-
GType lsm_svg_align_get_type (void) G_GNUC_CONST;
|
57
|
-
|
58
|
-
#define LSM_TYPE_SVG_MEET_OR_SLICE (lsm_svg_meet_or_slice_get_type())
|
59
|
-
GType lsm_svg_meet_or_slice_get_type (void) G_GNUC_CONST;
|
60
|
-
|
61
|
-
#define LSM_TYPE_SVG_COMP_OP (lsm_svg_comp_op_get_type())
|
62
|
-
GType lsm_svg_comp_op_get_type (void) G_GNUC_CONST;
|
63
|
-
|
64
|
-
#define LSM_TYPE_SVG_FONT_STRETCH (lsm_svg_font_stretch_get_type())
|
65
|
-
GType lsm_svg_font_stretch_get_type (void) G_GNUC_CONST;
|
66
|
-
|
67
|
-
#define LSM_TYPE_SVG_FONT_STYLE (lsm_svg_font_style_get_type())
|
68
|
-
GType lsm_svg_font_style_get_type (void) G_GNUC_CONST;
|
69
|
-
|
70
|
-
#define LSM_TYPE_SVG_FONT_WEIGHT (lsm_svg_font_weight_get_type())
|
71
|
-
GType lsm_svg_font_weight_get_type (void) G_GNUC_CONST;
|
72
|
-
|
73
|
-
#define LSM_TYPE_SVG_TEXT_ANCHOR (lsm_svg_text_anchor_get_type())
|
74
|
-
GType lsm_svg_text_anchor_get_type (void) G_GNUC_CONST;
|
75
|
-
|
76
|
-
#define LSM_TYPE_SVG_FILTER_INPUT (lsm_svg_filter_input_get_type())
|
77
|
-
GType lsm_svg_filter_input_get_type (void) G_GNUC_CONST;
|
78
|
-
|
79
|
-
#define LSM_TYPE_SVG_DISPLAY (lsm_svg_display_get_type())
|
80
|
-
GType lsm_svg_display_get_type (void) G_GNUC_CONST;
|
81
|
-
|
82
|
-
#define LSM_TYPE_SVG_VISIBILITY (lsm_svg_visibility_get_type())
|
83
|
-
GType lsm_svg_visibility_get_type (void) G_GNUC_CONST;
|
84
|
-
|
85
|
-
#define LSM_TYPE_SVG_ELEMENT_CATEGORY (lsm_svg_element_category_get_type())
|
86
|
-
GType lsm_svg_element_category_get_type (void) G_GNUC_CONST;
|
87
|
-
|
88
|
-
#define LSM_TYPE_SVG_WRITING_MODE (lsm_svg_writing_mode_get_type())
|
89
|
-
GType lsm_svg_writing_mode_get_type (void) G_GNUC_CONST;
|
90
|
-
|
91
|
-
#define LSM_TYPE_SVG_COLOR_FILTER_TYPE (lsm_svg_color_filter_type_get_type())
|
92
|
-
GType lsm_svg_color_filter_type_get_type (void) G_GNUC_CONST;
|
93
|
-
|
94
|
-
#define LSM_TYPE_SVG_MORPHOLOGY_OPERATOR (lsm_svg_morphology_operator_get_type())
|
95
|
-
GType lsm_svg_morphology_operator_get_type (void) G_GNUC_CONST;
|
96
|
-
|
97
|
-
#define LSM_TYPE_SVG_EDGE_MODE (lsm_svg_edge_mode_get_type())
|
98
|
-
GType lsm_svg_edge_mode_get_type (void) G_GNUC_CONST;
|
99
|
-
|
100
|
-
#define LSM_TYPE_SVG_STITCH_TILES (lsm_svg_stitch_tiles_get_type())
|
101
|
-
GType lsm_svg_stitch_tiles_get_type (void) G_GNUC_CONST;
|
102
|
-
|
103
|
-
#define LSM_TYPE_SVG_TURBULENCE_TYPE (lsm_svg_turbulence_type_get_type())
|
104
|
-
GType lsm_svg_turbulence_type_get_type (void) G_GNUC_CONST;
|
105
|
-
|
106
|
-
#define LSM_TYPE_SVG_CHANNEL_SELECTOR (lsm_svg_channel_selector_get_type())
|
107
|
-
GType lsm_svg_channel_selector_get_type (void) G_GNUC_CONST;
|
108
|
-
|
109
|
-
/* Enumerations from "lsmsvgview.h" */
|
110
|
-
|
111
|
-
#define LSM_TYPE_SVG_VIEW_SURFACE_TYPE (lsm_svg_view_surface_type_get_type())
|
112
|
-
GType lsm_svg_view_surface_type_get_type (void) G_GNUC_CONST;
|
113
|
-
|
114
|
-
/* Enumerations from "lsmsvgmatrix.h" */
|
115
|
-
|
116
|
-
#define LSM_TYPE_SVG_MATRIX_FLAGS (lsm_svg_matrix_flags_get_type())
|
117
|
-
GType lsm_svg_matrix_flags_get_type (void) G_GNUC_CONST;
|
118
|
-
|
119
|
-
/* Enumerations from "lsmsvguseelement.h" */
|
120
|
-
|
121
|
-
#define LSM_TYPE_SVG_USE_ELEMENT_FLAGS (lsm_svg_use_element_flags_get_type())
|
122
|
-
GType lsm_svg_use_element_flags_get_type (void) G_GNUC_CONST;
|
123
|
-
|
124
|
-
G_END_DECLS
|
125
|
-
|
126
|
-
#endif /* LSM_SVG_ENUM_TYPES_H */
|
127
|
-
|
128
|
-
/* Generated data ends here */
|
129
|
-
|
@@ -1,776 +0,0 @@
|
|
1
|
-
# Makefile.in generated by automake 1.15 from Makefile.am.
|
2
|
-
# tests/Makefile. Generated from Makefile.in by configure.
|
3
|
-
|
4
|
-
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
|
5
|
-
|
6
|
-
# This Makefile.in is free software; the Free Software Foundation
|
7
|
-
# gives unlimited permission to copy and/or distribute it,
|
8
|
-
# with or without modifications, as long as this notice is preserved.
|
9
|
-
|
10
|
-
# This program is distributed in the hope that it will be useful,
|
11
|
-
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
-
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
-
# PARTICULAR PURPOSE.
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
# GLIB - Library of useful C routines
|
18
|
-
|
19
|
-
|
20
|
-
am__is_gnu_make = { \
|
21
|
-
if test -z '$(MAKELEVEL)'; then \
|
22
|
-
false; \
|
23
|
-
elif test -n '$(MAKE_HOST)'; then \
|
24
|
-
true; \
|
25
|
-
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
26
|
-
true; \
|
27
|
-
else \
|
28
|
-
false; \
|
29
|
-
fi; \
|
30
|
-
}
|
31
|
-
am__make_running_with_option = \
|
32
|
-
case $${target_option-} in \
|
33
|
-
?) ;; \
|
34
|
-
*) echo "am__make_running_with_option: internal error: invalid" \
|
35
|
-
"target option '$${target_option-}' specified" >&2; \
|
36
|
-
exit 1;; \
|
37
|
-
esac; \
|
38
|
-
has_opt=no; \
|
39
|
-
sane_makeflags=$$MAKEFLAGS; \
|
40
|
-
if $(am__is_gnu_make); then \
|
41
|
-
sane_makeflags=$$MFLAGS; \
|
42
|
-
else \
|
43
|
-
case $$MAKEFLAGS in \
|
44
|
-
*\\[\ \ ]*) \
|
45
|
-
bs=\\; \
|
46
|
-
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
47
|
-
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
48
|
-
esac; \
|
49
|
-
fi; \
|
50
|
-
skip_next=no; \
|
51
|
-
strip_trailopt () \
|
52
|
-
{ \
|
53
|
-
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
54
|
-
}; \
|
55
|
-
for flg in $$sane_makeflags; do \
|
56
|
-
test $$skip_next = yes && { skip_next=no; continue; }; \
|
57
|
-
case $$flg in \
|
58
|
-
*=*|--*) continue;; \
|
59
|
-
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
60
|
-
-*I?*) strip_trailopt 'I';; \
|
61
|
-
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
62
|
-
-*O?*) strip_trailopt 'O';; \
|
63
|
-
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
64
|
-
-*l?*) strip_trailopt 'l';; \
|
65
|
-
-[dEDm]) skip_next=yes;; \
|
66
|
-
-[JT]) skip_next=yes;; \
|
67
|
-
esac; \
|
68
|
-
case $$flg in \
|
69
|
-
*$$target_option*) has_opt=yes; break;; \
|
70
|
-
esac; \
|
71
|
-
done; \
|
72
|
-
test $$has_opt = yes
|
73
|
-
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
74
|
-
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
75
|
-
pkgdatadir = $(datadir)/lasem
|
76
|
-
pkgincludedir = $(includedir)/lasem
|
77
|
-
pkglibdir = $(libdir)/lasem
|
78
|
-
pkglibexecdir = $(libexecdir)/lasem
|
79
|
-
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
80
|
-
install_sh_DATA = $(install_sh) -c -m 644
|
81
|
-
install_sh_PROGRAM = $(install_sh) -c
|
82
|
-
install_sh_SCRIPT = $(install_sh) -c
|
83
|
-
INSTALL_HEADER = $(INSTALL_DATA)
|
84
|
-
transform = $(program_transform_name)
|
85
|
-
NORMAL_INSTALL = :
|
86
|
-
PRE_INSTALL = :
|
87
|
-
POST_INSTALL = :
|
88
|
-
NORMAL_UNINSTALL = :
|
89
|
-
PRE_UNINSTALL = :
|
90
|
-
POST_UNINSTALL = :
|
91
|
-
build_triplet = x86_64-apple-darwin14.5.0
|
92
|
-
host_triplet = x86_64-apple-darwin14.5.0
|
93
|
-
noinst_PROGRAMS = lsm-test$(EXEEXT) $(am__EXEEXT_1)
|
94
|
-
subdir = tests
|
95
|
-
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
96
|
-
am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \
|
97
|
-
$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/introspection.m4 \
|
98
|
-
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
99
|
-
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
100
|
-
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
|
101
|
-
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
102
|
-
$(ACLOCAL_M4)
|
103
|
-
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
|
104
|
-
mkinstalldirs = $(install_sh) -d
|
105
|
-
CONFIG_HEADER = $(top_builddir)/config.h
|
106
|
-
CONFIG_CLEAN_FILES =
|
107
|
-
CONFIG_CLEAN_VPATH_FILES =
|
108
|
-
am__EXEEXT_1 = dom$(EXEEXT) str$(EXEEXT) filter$(EXEEXT) \
|
109
|
-
suite$(EXEEXT)
|
110
|
-
PROGRAMS = $(noinst_PROGRAMS)
|
111
|
-
am_dom_OBJECTS = dom.$(OBJEXT)
|
112
|
-
dom_OBJECTS = $(am_dom_OBJECTS)
|
113
|
-
am__DEPENDENCIES_1 =
|
114
|
-
am__DEPENDENCIES_2 = \
|
115
|
-
$(top_builddir)/src/liblasem-0.6.la \
|
116
|
-
$(top_builddir)/itex2mml/libitex2mml.la $(am__DEPENDENCIES_1)
|
117
|
-
dom_DEPENDENCIES = $(am__DEPENDENCIES_2)
|
118
|
-
AM_V_lt = $(am__v_lt_$(V))
|
119
|
-
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
|
120
|
-
am__v_lt_0 = --silent
|
121
|
-
am__v_lt_1 =
|
122
|
-
am_filter_OBJECTS = filter.$(OBJEXT)
|
123
|
-
filter_OBJECTS = $(am_filter_OBJECTS)
|
124
|
-
filter_DEPENDENCIES = $(am__DEPENDENCIES_2)
|
125
|
-
am_lsm_test_OBJECTS = lsmtest.$(OBJEXT)
|
126
|
-
lsm_test_OBJECTS = $(am_lsm_test_OBJECTS)
|
127
|
-
lsm_test_DEPENDENCIES = $(am__DEPENDENCIES_2)
|
128
|
-
am_str_OBJECTS = str.$(OBJEXT)
|
129
|
-
str_OBJECTS = $(am_str_OBJECTS)
|
130
|
-
str_DEPENDENCIES = $(am__DEPENDENCIES_2)
|
131
|
-
am_suite_OBJECTS = suite-suite.$(OBJEXT)
|
132
|
-
suite_OBJECTS = $(am_suite_OBJECTS)
|
133
|
-
suite_DEPENDENCIES = $(am__DEPENDENCIES_2)
|
134
|
-
suite_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
135
|
-
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(suite_CFLAGS) $(CFLAGS) \
|
136
|
-
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
137
|
-
AM_V_P = $(am__v_P_$(V))
|
138
|
-
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
139
|
-
am__v_P_0 = false
|
140
|
-
am__v_P_1 = :
|
141
|
-
AM_V_GEN = $(am__v_GEN_$(V))
|
142
|
-
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
143
|
-
am__v_GEN_0 = @echo " GEN " $@;
|
144
|
-
am__v_GEN_1 =
|
145
|
-
AM_V_at = $(am__v_at_$(V))
|
146
|
-
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
147
|
-
am__v_at_0 = @
|
148
|
-
am__v_at_1 =
|
149
|
-
DEFAULT_INCLUDES = -I. -I$(top_builddir)
|
150
|
-
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
151
|
-
am__depfiles_maybe = depfiles
|
152
|
-
am__mv = mv -f
|
153
|
-
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
154
|
-
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
155
|
-
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
156
|
-
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
157
|
-
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
158
|
-
$(AM_CFLAGS) $(CFLAGS)
|
159
|
-
AM_V_CC = $(am__v_CC_$(V))
|
160
|
-
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
|
161
|
-
am__v_CC_0 = @echo " CC " $@;
|
162
|
-
am__v_CC_1 =
|
163
|
-
CCLD = $(CC)
|
164
|
-
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
165
|
-
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
166
|
-
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
167
|
-
AM_V_CCLD = $(am__v_CCLD_$(V))
|
168
|
-
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
|
169
|
-
am__v_CCLD_0 = @echo " CCLD " $@;
|
170
|
-
am__v_CCLD_1 =
|
171
|
-
SOURCES = $(dom_SOURCES) $(filter_SOURCES) $(lsm_test_SOURCES) \
|
172
|
-
$(str_SOURCES) $(suite_SOURCES)
|
173
|
-
DIST_SOURCES = $(dom_SOURCES) $(filter_SOURCES) $(lsm_test_SOURCES) \
|
174
|
-
$(str_SOURCES) $(suite_SOURCES)
|
175
|
-
am__can_run_installinfo = \
|
176
|
-
case $$AM_UPDATE_INFO_DIR in \
|
177
|
-
n|no|NO) false;; \
|
178
|
-
*) (install-info --version) >/dev/null 2>&1;; \
|
179
|
-
esac
|
180
|
-
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
181
|
-
# Read a list of newline-separated strings from the standard input,
|
182
|
-
# and print each of them once, without duplicates. Input order is
|
183
|
-
# *not* preserved.
|
184
|
-
am__uniquify_input = $(AWK) '\
|
185
|
-
BEGIN { nonempty = 0; } \
|
186
|
-
{ items[$$0] = 1; nonempty = 1; } \
|
187
|
-
END { if (nonempty) { for (i in items) print i; }; } \
|
188
|
-
'
|
189
|
-
# Make sure the list of sources is unique. This is necessary because,
|
190
|
-
# e.g., the same source file might be shared among _SOURCES variables
|
191
|
-
# for different programs/libraries.
|
192
|
-
am__define_uniq_tagged_files = \
|
193
|
-
list='$(am__tagged_files)'; \
|
194
|
-
unique=`for i in $$list; do \
|
195
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
196
|
-
done | $(am__uniquify_input)`
|
197
|
-
ETAGS = etags
|
198
|
-
CTAGS = ctags
|
199
|
-
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl \
|
200
|
-
$(top_srcdir)/depcomp
|
201
|
-
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
202
|
-
ACLOCAL = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing aclocal-1.15
|
203
|
-
ALL_LINGUAS =
|
204
|
-
AMTAR = $${TAR-tar}
|
205
|
-
AM_DEFAULT_VERBOSITY = 0
|
206
|
-
AR = ar
|
207
|
-
AUTOCONF = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing autoconf
|
208
|
-
AUTOHEADER = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing autoheader
|
209
|
-
AUTOMAKE = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing automake-1.15
|
210
|
-
AWK = awk
|
211
|
-
CATALOGS =
|
212
|
-
CATOBJEXT = .gmo
|
213
|
-
CC = gcc
|
214
|
-
CCDEPMODE = depmode=gcc3
|
215
|
-
CFLAGS = -I/usr/local/include -Wformat=2 -Wmissing-format-attribute -Wextra -Wundef -Wstrict-prototypes -Wnested-externs -Wchar-subscripts -Wwrite-strings -Wmissing-noreturn -Wmissing-declarations -Wcast-align -Winline -Waddress-space -Wbitwise -Wcast-to-as -Wno-pointer-sign -Wdefault-bitfield-sign -Wdo-while -Wparen-string -Wptr-subtraction-blows -Wreturn-void -Wtypesign -Wno-unused-parameter -Wno-sign-compare
|
216
|
-
CPP = gcc -E
|
217
|
-
CPPFLAGS =
|
218
|
-
CYGPATH_W = echo
|
219
|
-
DATADIRNAME = share
|
220
|
-
DEFS = -DHAVE_CONFIG_H
|
221
|
-
DEPDIR = .deps
|
222
|
-
DLLTOOL = false
|
223
|
-
DSYMUTIL = dsymutil
|
224
|
-
DUMPBIN =
|
225
|
-
ECHO_C = \c
|
226
|
-
ECHO_N =
|
227
|
-
ECHO_T =
|
228
|
-
EGREP = /usr/bin/grep -E
|
229
|
-
EXEEXT =
|
230
|
-
FGREP = /usr/bin/grep -F
|
231
|
-
GETTEXT_PACKAGE = lasem-0.6
|
232
|
-
GLIB_MKENUMS = /usr/local/bin/glib-mkenums
|
233
|
-
GMOFILES =
|
234
|
-
GMSGFMT = /usr/local/bin/msgfmt
|
235
|
-
GREP = /usr/bin/grep
|
236
|
-
GTKDOC_CHECK = gtkdoc-check.test
|
237
|
-
GTKDOC_CHECK_PATH = /usr/local/bin/gtkdoc-check
|
238
|
-
GTKDOC_DEPS_CFLAGS = -I/usr/local/Cellar/glib/2.44.1/include/glib-2.0 -I/usr/local/Cellar/glib/2.44.1/lib/glib-2.0/include -I/usr/local/opt/gettext/include
|
239
|
-
GTKDOC_DEPS_LIBS = -L/usr/local/Cellar/glib/2.44.1/lib -L/usr/local/opt/gettext/lib -lgobject-2.0 -lglib-2.0 -lintl
|
240
|
-
GTKDOC_MKPDF = /usr/local/bin/gtkdoc-mkpdf
|
241
|
-
GTKDOC_REBASE = /usr/local/bin/gtkdoc-rebase
|
242
|
-
HTML_DIR = ${datadir}/gtk-doc/html
|
243
|
-
INSTALL = /usr/bin/install -c
|
244
|
-
INSTALL_DATA = ${INSTALL} -m 644
|
245
|
-
INSTALL_PROGRAM = ${INSTALL}
|
246
|
-
INSTALL_SCRIPT = ${INSTALL}
|
247
|
-
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
248
|
-
INSTOBJEXT = .mo
|
249
|
-
INTLLIBS = -lintl
|
250
|
-
INTLTOOL_EXTRACT = /usr/local/bin/intltool-extract
|
251
|
-
INTLTOOL_MERGE = /usr/local/bin/intltool-merge
|
252
|
-
INTLTOOL_PERL = /usr/bin/perl
|
253
|
-
INTLTOOL_UPDATE = /usr/local/bin/intltool-update
|
254
|
-
INTLTOOL_V_MERGE = $(INTLTOOL__v_MERGE_$(V))
|
255
|
-
INTLTOOL_V_MERGE_OPTIONS = $(intltool__v_merge_options_$(V))
|
256
|
-
INTLTOOL__v_MERGE_ = $(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))
|
257
|
-
INTLTOOL__v_MERGE_0 = @echo " ITMRG " $@;
|
258
|
-
INTROSPECTION_CFLAGS =
|
259
|
-
INTROSPECTION_COMPILER =
|
260
|
-
INTROSPECTION_GENERATE =
|
261
|
-
INTROSPECTION_GIRDIR =
|
262
|
-
INTROSPECTION_LIBS =
|
263
|
-
INTROSPECTION_MAKEFILE =
|
264
|
-
INTROSPECTION_SCANNER =
|
265
|
-
INTROSPECTION_TYPELIBDIR =
|
266
|
-
LASEM_API_VERSION = 0.6
|
267
|
-
LASEM_API_VERSION_U = 0_6
|
268
|
-
LASEM_CFLAGS = -D_REENTRANT -I/opt/X11/include/cairo -I/opt/X11/include/pixman-1 -I/opt/X11/include -I/opt/X11/include/freetype2 -I/opt/X11/include/libpng15 -I/opt/X11/include -I/usr/local/Cellar/gdk-pixbuf/2.30.8/include/gdk-pixbuf-2.0 -I/usr/local/Cellar/libpng/1.6.18/include/libpng16 -I/usr/local/Cellar/pango/1.36.8_2/include/pango-1.0 -I/usr/local/Cellar/glib/2.44.1/include/glib-2.0 -I/usr/local/Cellar/glib/2.44.1/lib/glib-2.0/include -I/usr/local/opt/gettext/include -I/usr/include/libxml2
|
269
|
-
LASEM_LIBS = -L/opt/X11/lib -L/usr/local/Cellar/glib/2.44.1/lib -L/usr/local/Cellar/gdk-pixbuf/2.30.8/lib -L/usr/local/Cellar/pango/1.36.8_2/lib -L/usr/local/Cellar/glib/2.44.1/lib -L/usr/local/opt/gettext/lib -lgio-2.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lintl -lcairo -lxml2 -lm
|
270
|
-
LASEM_LIBTOOL_VERSION = 5:1:0
|
271
|
-
LD = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
|
272
|
-
LDFLAGS = -L/usr/local/lib
|
273
|
-
LEX = flex
|
274
|
-
LEXLIB = -ll
|
275
|
-
LEX_OUTPUT_ROOT = lex.yy
|
276
|
-
LIBOBJS =
|
277
|
-
LIBS =
|
278
|
-
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
279
|
-
LIPO = lipo
|
280
|
-
LN_S = ln -s
|
281
|
-
LTLIBOBJS =
|
282
|
-
LT_SYS_LIBRARY_PATH =
|
283
|
-
MAINT =
|
284
|
-
MAKEINFO = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/missing makeinfo
|
285
|
-
MANIFEST_TOOL = :
|
286
|
-
MKDIR_P = .././install-sh -c -d
|
287
|
-
MKINSTALLDIRS = ./mkinstalldirs
|
288
|
-
MSGFMT = /usr/local/bin/msgfmt
|
289
|
-
MSGFMT_OPTS = -c
|
290
|
-
MSGMERGE = /usr/local/bin/msgmerge
|
291
|
-
NM = /usr/bin/nm
|
292
|
-
NMEDIT = nmedit
|
293
|
-
OBJDUMP = false
|
294
|
-
OBJEXT = o
|
295
|
-
OTOOL = otool
|
296
|
-
OTOOL64 = :
|
297
|
-
PACKAGE = lasem
|
298
|
-
PACKAGE_BUGREPORT = http://bugzilla.gnome.org/
|
299
|
-
PACKAGE_NAME = lasem
|
300
|
-
PACKAGE_STRING = lasem 0.5.1
|
301
|
-
PACKAGE_TARNAME = lasem
|
302
|
-
PACKAGE_URL =
|
303
|
-
PACKAGE_VERSION = 0.5.1
|
304
|
-
PATH_SEPARATOR = :
|
305
|
-
PKG_CONFIG = /usr/local/bin/pkg-config
|
306
|
-
PKG_CONFIG_LIBDIR =
|
307
|
-
PKG_CONFIG_PATH = /opt/X11/lib/pkgconfig:
|
308
|
-
POFILES =
|
309
|
-
POSUB = po
|
310
|
-
PO_IN_DATADIR_FALSE =
|
311
|
-
PO_IN_DATADIR_TRUE =
|
312
|
-
RANLIB = ranlib
|
313
|
-
SED = /usr/bin/sed
|
314
|
-
SET_MAKE =
|
315
|
-
SHELL = /bin/sh
|
316
|
-
STRIP = strip
|
317
|
-
USE_NLS = yes
|
318
|
-
VERSION = 0.5.1
|
319
|
-
XGETTEXT = /usr/local/bin/xgettext
|
320
|
-
YACC = bison -y
|
321
|
-
YFLAGS =
|
322
|
-
abs_builddir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/tests
|
323
|
-
abs_srcdir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/tests
|
324
|
-
abs_top_builddir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem
|
325
|
-
abs_top_srcdir = /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem
|
326
|
-
ac_ct_AR = ar
|
327
|
-
ac_ct_CC = gcc
|
328
|
-
ac_ct_DUMPBIN =
|
329
|
-
am__include = include
|
330
|
-
am__leading_dot = .
|
331
|
-
am__quote =
|
332
|
-
am__tar = $${TAR-tar} chof - "$$tardir"
|
333
|
-
am__untar = $${TAR-tar} xf -
|
334
|
-
bindir = ${exec_prefix}/bin
|
335
|
-
build = x86_64-apple-darwin14.5.0
|
336
|
-
build_alias =
|
337
|
-
build_cpu = x86_64
|
338
|
-
build_os = darwin14.5.0
|
339
|
-
build_vendor = apple
|
340
|
-
builddir = .
|
341
|
-
datadir = ${datarootdir}
|
342
|
-
datarootdir = ${prefix}/share
|
343
|
-
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
344
|
-
dvidir = ${docdir}
|
345
|
-
exec_prefix = ${prefix}
|
346
|
-
host = x86_64-apple-darwin14.5.0
|
347
|
-
host_alias =
|
348
|
-
host_cpu = x86_64
|
349
|
-
host_os = darwin14.5.0
|
350
|
-
host_vendor = apple
|
351
|
-
htmldir = ${docdir}
|
352
|
-
includedir = ${prefix}/include
|
353
|
-
infodir = ${datarootdir}/info
|
354
|
-
install_sh = ${SHELL} /Users/gjtorikian/Development/mathematical/ext/mathematical/lasem/install-sh
|
355
|
-
intltool__v_merge_options_ = $(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))
|
356
|
-
intltool__v_merge_options_0 = -q
|
357
|
-
libdir = ${exec_prefix}/lib
|
358
|
-
libexecdir = ${exec_prefix}/libexec
|
359
|
-
localedir = ${datarootdir}/locale
|
360
|
-
localstatedir = ${prefix}/var
|
361
|
-
mandir = ${datarootdir}/man
|
362
|
-
mkdir_p = $(MKDIR_P)
|
363
|
-
oldincludedir = /usr/include
|
364
|
-
pdfdir = ${docdir}
|
365
|
-
prefix = /usr/local
|
366
|
-
program_transform_name = s,x,x,
|
367
|
-
psdir = ${docdir}
|
368
|
-
sbindir = ${exec_prefix}/sbin
|
369
|
-
sharedstatedir = ${prefix}/com
|
370
|
-
srcdir = .
|
371
|
-
sysconfdir = ${prefix}/etc
|
372
|
-
target_alias =
|
373
|
-
top_build_prefix = ../
|
374
|
-
top_builddir = ..
|
375
|
-
top_srcdir = ..
|
376
|
-
GTESTER = gtester
|
377
|
-
GTESTER_REPORT = gtester-report
|
378
|
-
|
379
|
-
# initialize variables for unconditional += appending
|
380
|
-
TEST_PROGS = dom str filter suite
|
381
|
-
AM_CPPFLAGS = -g -I$(top_srcdir)/src/ $(LASEM_CFLAGS)
|
382
|
-
AM_CFLAGS = -Wall
|
383
|
-
test_progs_ldadd = \
|
384
|
-
$(top_builddir)/src/liblasem-0.6.la \
|
385
|
-
$(top_builddir)/itex2mml/libitex2mml.la \
|
386
|
-
$(LASEM_LIBS)
|
387
|
-
|
388
|
-
lsm_test_SOURCES = lsmtest.c
|
389
|
-
lsm_test_LDADD = $(test_progs_ldadd)
|
390
|
-
str_SOURCES = str.c
|
391
|
-
str_LDADD = $(test_progs_ldadd)
|
392
|
-
dom_SOURCES = dom.c
|
393
|
-
dom_LDADD = $(test_progs_ldadd)
|
394
|
-
filter_SOURCES = filter.c
|
395
|
-
filter_LDADD = $(test_progs_ldadd)
|
396
|
-
suite_SOURCES = suite.c
|
397
|
-
suite_LDADD = $(test_progs_ldadd)
|
398
|
-
suite_CFLAGS = -DSUITE_DATA_DIRECTORY="\"$(top_srcdir)/tests/data\"" -DSUITE_OPTION_FILE="\"$(top_srcdir)/tests/suite.ini\""
|
399
|
-
EXTRA_DIST = suite.ini
|
400
|
-
all: all-am
|
401
|
-
|
402
|
-
.SUFFIXES:
|
403
|
-
.SUFFIXES: .c .lo .o .obj
|
404
|
-
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/Makefile.decl $(am__configure_deps)
|
405
|
-
@for dep in $?; do \
|
406
|
-
case '$(am__configure_deps)' in \
|
407
|
-
*$$dep*) \
|
408
|
-
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
409
|
-
&& { if test -f $@; then exit 0; else break; fi; }; \
|
410
|
-
exit 1;; \
|
411
|
-
esac; \
|
412
|
-
done; \
|
413
|
-
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \
|
414
|
-
$(am__cd) $(top_srcdir) && \
|
415
|
-
$(AUTOMAKE) --gnu tests/Makefile
|
416
|
-
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
417
|
-
@case '$?' in \
|
418
|
-
*config.status*) \
|
419
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
420
|
-
*) \
|
421
|
-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
422
|
-
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
423
|
-
esac;
|
424
|
-
$(top_srcdir)/Makefile.decl $(am__empty):
|
425
|
-
|
426
|
-
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
427
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
428
|
-
|
429
|
-
$(top_srcdir)/configure: $(am__configure_deps)
|
430
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
431
|
-
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
432
|
-
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
433
|
-
$(am__aclocal_m4_deps):
|
434
|
-
|
435
|
-
clean-noinstPROGRAMS:
|
436
|
-
@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
|
437
|
-
echo " rm -f" $$list; \
|
438
|
-
rm -f $$list || exit $$?; \
|
439
|
-
test -n "$(EXEEXT)" || exit 0; \
|
440
|
-
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
441
|
-
echo " rm -f" $$list; \
|
442
|
-
rm -f $$list
|
443
|
-
|
444
|
-
dom$(EXEEXT): $(dom_OBJECTS) $(dom_DEPENDENCIES) $(EXTRA_dom_DEPENDENCIES)
|
445
|
-
@rm -f dom$(EXEEXT)
|
446
|
-
$(AM_V_CCLD)$(LINK) $(dom_OBJECTS) $(dom_LDADD) $(LIBS)
|
447
|
-
|
448
|
-
filter$(EXEEXT): $(filter_OBJECTS) $(filter_DEPENDENCIES) $(EXTRA_filter_DEPENDENCIES)
|
449
|
-
@rm -f filter$(EXEEXT)
|
450
|
-
$(AM_V_CCLD)$(LINK) $(filter_OBJECTS) $(filter_LDADD) $(LIBS)
|
451
|
-
|
452
|
-
lsm-test$(EXEEXT): $(lsm_test_OBJECTS) $(lsm_test_DEPENDENCIES) $(EXTRA_lsm_test_DEPENDENCIES)
|
453
|
-
@rm -f lsm-test$(EXEEXT)
|
454
|
-
$(AM_V_CCLD)$(LINK) $(lsm_test_OBJECTS) $(lsm_test_LDADD) $(LIBS)
|
455
|
-
|
456
|
-
str$(EXEEXT): $(str_OBJECTS) $(str_DEPENDENCIES) $(EXTRA_str_DEPENDENCIES)
|
457
|
-
@rm -f str$(EXEEXT)
|
458
|
-
$(AM_V_CCLD)$(LINK) $(str_OBJECTS) $(str_LDADD) $(LIBS)
|
459
|
-
|
460
|
-
suite$(EXEEXT): $(suite_OBJECTS) $(suite_DEPENDENCIES) $(EXTRA_suite_DEPENDENCIES)
|
461
|
-
@rm -f suite$(EXEEXT)
|
462
|
-
$(AM_V_CCLD)$(suite_LINK) $(suite_OBJECTS) $(suite_LDADD) $(LIBS)
|
463
|
-
|
464
|
-
mostlyclean-compile:
|
465
|
-
-rm -f *.$(OBJEXT)
|
466
|
-
|
467
|
-
distclean-compile:
|
468
|
-
-rm -f *.tab.c
|
469
|
-
|
470
|
-
include ./$(DEPDIR)/dom.Po
|
471
|
-
include ./$(DEPDIR)/filter.Po
|
472
|
-
include ./$(DEPDIR)/lsmtest.Po
|
473
|
-
include ./$(DEPDIR)/str.Po
|
474
|
-
include ./$(DEPDIR)/suite-suite.Po
|
475
|
-
|
476
|
-
.c.o:
|
477
|
-
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
478
|
-
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
479
|
-
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
480
|
-
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
481
|
-
# $(AM_V_CC_no)$(COMPILE) -c -o $@ $<
|
482
|
-
|
483
|
-
.c.obj:
|
484
|
-
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
485
|
-
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
486
|
-
# $(AM_V_CC)source='$<' object='$@' libtool=no \
|
487
|
-
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
488
|
-
# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
489
|
-
|
490
|
-
.c.lo:
|
491
|
-
$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
492
|
-
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
493
|
-
# $(AM_V_CC)source='$<' object='$@' libtool=yes \
|
494
|
-
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
495
|
-
# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $<
|
496
|
-
|
497
|
-
suite-suite.o: suite.c
|
498
|
-
$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(suite_CFLAGS) $(CFLAGS) -MT suite-suite.o -MD -MP -MF $(DEPDIR)/suite-suite.Tpo -c -o suite-suite.o `test -f 'suite.c' || echo '$(srcdir)/'`suite.c
|
499
|
-
$(AM_V_at)$(am__mv) $(DEPDIR)/suite-suite.Tpo $(DEPDIR)/suite-suite.Po
|
500
|
-
# $(AM_V_CC)source='suite.c' object='suite-suite.o' libtool=no \
|
501
|
-
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
502
|
-
# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(suite_CFLAGS) $(CFLAGS) -c -o suite-suite.o `test -f 'suite.c' || echo '$(srcdir)/'`suite.c
|
503
|
-
|
504
|
-
suite-suite.obj: suite.c
|
505
|
-
$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(suite_CFLAGS) $(CFLAGS) -MT suite-suite.obj -MD -MP -MF $(DEPDIR)/suite-suite.Tpo -c -o suite-suite.obj `if test -f 'suite.c'; then $(CYGPATH_W) 'suite.c'; else $(CYGPATH_W) '$(srcdir)/suite.c'; fi`
|
506
|
-
$(AM_V_at)$(am__mv) $(DEPDIR)/suite-suite.Tpo $(DEPDIR)/suite-suite.Po
|
507
|
-
# $(AM_V_CC)source='suite.c' object='suite-suite.obj' libtool=no \
|
508
|
-
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
509
|
-
# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(suite_CFLAGS) $(CFLAGS) -c -o suite-suite.obj `if test -f 'suite.c'; then $(CYGPATH_W) 'suite.c'; else $(CYGPATH_W) '$(srcdir)/suite.c'; fi`
|
510
|
-
|
511
|
-
mostlyclean-libtool:
|
512
|
-
-rm -f *.lo
|
513
|
-
|
514
|
-
clean-libtool:
|
515
|
-
-rm -rf .libs _libs
|
516
|
-
|
517
|
-
ID: $(am__tagged_files)
|
518
|
-
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
519
|
-
tags: tags-am
|
520
|
-
TAGS: tags
|
521
|
-
|
522
|
-
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
523
|
-
set x; \
|
524
|
-
here=`pwd`; \
|
525
|
-
$(am__define_uniq_tagged_files); \
|
526
|
-
shift; \
|
527
|
-
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
528
|
-
test -n "$$unique" || unique=$$empty_fix; \
|
529
|
-
if test $$# -gt 0; then \
|
530
|
-
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
531
|
-
"$$@" $$unique; \
|
532
|
-
else \
|
533
|
-
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
534
|
-
$$unique; \
|
535
|
-
fi; \
|
536
|
-
fi
|
537
|
-
ctags: ctags-am
|
538
|
-
|
539
|
-
CTAGS: ctags
|
540
|
-
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
541
|
-
$(am__define_uniq_tagged_files); \
|
542
|
-
test -z "$(CTAGS_ARGS)$$unique" \
|
543
|
-
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
544
|
-
$$unique
|
545
|
-
|
546
|
-
GTAGS:
|
547
|
-
here=`$(am__cd) $(top_builddir) && pwd` \
|
548
|
-
&& $(am__cd) $(top_srcdir) \
|
549
|
-
&& gtags -i $(GTAGS_ARGS) "$$here"
|
550
|
-
cscopelist: cscopelist-am
|
551
|
-
|
552
|
-
cscopelist-am: $(am__tagged_files)
|
553
|
-
list='$(am__tagged_files)'; \
|
554
|
-
case "$(srcdir)" in \
|
555
|
-
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
556
|
-
*) sdir=$(subdir)/$(srcdir) ;; \
|
557
|
-
esac; \
|
558
|
-
for i in $$list; do \
|
559
|
-
if test -f "$$i"; then \
|
560
|
-
echo "$(subdir)/$$i"; \
|
561
|
-
else \
|
562
|
-
echo "$$sdir/$$i"; \
|
563
|
-
fi; \
|
564
|
-
done >> $(top_builddir)/cscope.files
|
565
|
-
|
566
|
-
distclean-tags:
|
567
|
-
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
568
|
-
|
569
|
-
distdir: $(DISTFILES)
|
570
|
-
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
571
|
-
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
572
|
-
list='$(DISTFILES)'; \
|
573
|
-
dist_files=`for file in $$list; do echo $$file; done | \
|
574
|
-
sed -e "s|^$$srcdirstrip/||;t" \
|
575
|
-
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
576
|
-
case $$dist_files in \
|
577
|
-
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
578
|
-
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
579
|
-
sort -u` ;; \
|
580
|
-
esac; \
|
581
|
-
for file in $$dist_files; do \
|
582
|
-
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
583
|
-
if test -d $$d/$$file; then \
|
584
|
-
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
585
|
-
if test -d "$(distdir)/$$file"; then \
|
586
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
587
|
-
fi; \
|
588
|
-
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
589
|
-
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
590
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
591
|
-
fi; \
|
592
|
-
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
593
|
-
else \
|
594
|
-
test -f "$(distdir)/$$file" \
|
595
|
-
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
596
|
-
|| exit 1; \
|
597
|
-
fi; \
|
598
|
-
done
|
599
|
-
check-am: all-am
|
600
|
-
$(MAKE) $(AM_MAKEFLAGS) check-local
|
601
|
-
check: check-am
|
602
|
-
all-am: Makefile $(PROGRAMS)
|
603
|
-
installdirs:
|
604
|
-
install: install-am
|
605
|
-
install-exec: install-exec-am
|
606
|
-
install-data: install-data-am
|
607
|
-
uninstall: uninstall-am
|
608
|
-
|
609
|
-
install-am: all-am
|
610
|
-
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
611
|
-
|
612
|
-
installcheck: installcheck-am
|
613
|
-
install-strip:
|
614
|
-
if test -z '$(STRIP)'; then \
|
615
|
-
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
616
|
-
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
617
|
-
install; \
|
618
|
-
else \
|
619
|
-
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
620
|
-
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
621
|
-
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
622
|
-
fi
|
623
|
-
mostlyclean-generic:
|
624
|
-
|
625
|
-
clean-generic:
|
626
|
-
|
627
|
-
distclean-generic:
|
628
|
-
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
629
|
-
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
630
|
-
|
631
|
-
maintainer-clean-generic:
|
632
|
-
@echo "This command is intended for maintainers to use"
|
633
|
-
@echo "it deletes files that may require special tools to rebuild."
|
634
|
-
clean: clean-am
|
635
|
-
|
636
|
-
clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
|
637
|
-
mostlyclean-am
|
638
|
-
|
639
|
-
distclean: distclean-am
|
640
|
-
-rm -rf ./$(DEPDIR)
|
641
|
-
-rm -f Makefile
|
642
|
-
distclean-am: clean-am distclean-compile distclean-generic \
|
643
|
-
distclean-tags
|
644
|
-
|
645
|
-
dvi: dvi-am
|
646
|
-
|
647
|
-
dvi-am:
|
648
|
-
|
649
|
-
html: html-am
|
650
|
-
|
651
|
-
html-am:
|
652
|
-
|
653
|
-
info: info-am
|
654
|
-
|
655
|
-
info-am:
|
656
|
-
|
657
|
-
install-data-am:
|
658
|
-
|
659
|
-
install-dvi: install-dvi-am
|
660
|
-
|
661
|
-
install-dvi-am:
|
662
|
-
|
663
|
-
install-exec-am:
|
664
|
-
|
665
|
-
install-html: install-html-am
|
666
|
-
|
667
|
-
install-html-am:
|
668
|
-
|
669
|
-
install-info: install-info-am
|
670
|
-
|
671
|
-
install-info-am:
|
672
|
-
|
673
|
-
install-man:
|
674
|
-
|
675
|
-
install-pdf: install-pdf-am
|
676
|
-
|
677
|
-
install-pdf-am:
|
678
|
-
|
679
|
-
install-ps: install-ps-am
|
680
|
-
|
681
|
-
install-ps-am:
|
682
|
-
|
683
|
-
installcheck-am:
|
684
|
-
|
685
|
-
maintainer-clean: maintainer-clean-am
|
686
|
-
-rm -rf ./$(DEPDIR)
|
687
|
-
-rm -f Makefile
|
688
|
-
maintainer-clean-am: distclean-am maintainer-clean-generic
|
689
|
-
|
690
|
-
mostlyclean: mostlyclean-am
|
691
|
-
|
692
|
-
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
693
|
-
mostlyclean-libtool
|
694
|
-
|
695
|
-
pdf: pdf-am
|
696
|
-
|
697
|
-
pdf-am:
|
698
|
-
|
699
|
-
ps: ps-am
|
700
|
-
|
701
|
-
ps-am:
|
702
|
-
|
703
|
-
uninstall-am:
|
704
|
-
|
705
|
-
.MAKE: check-am install-am install-strip
|
706
|
-
|
707
|
-
.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \
|
708
|
-
clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \
|
709
|
-
ctags ctags-am distclean distclean-compile distclean-generic \
|
710
|
-
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
711
|
-
html-am info info-am install install-am install-data \
|
712
|
-
install-data-am install-dvi install-dvi-am install-exec \
|
713
|
-
install-exec-am install-html install-html-am install-info \
|
714
|
-
install-info-am install-man install-pdf install-pdf-am \
|
715
|
-
install-ps install-ps-am install-strip installcheck \
|
716
|
-
installcheck-am installdirs maintainer-clean \
|
717
|
-
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
718
|
-
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
719
|
-
tags tags-am uninstall uninstall-am
|
720
|
-
|
721
|
-
.PRECIOUS: Makefile
|
722
|
-
|
723
|
-
|
724
|
-
### testing rules
|
725
|
-
|
726
|
-
# test: run all tests in cwd and subdirs
|
727
|
-
test: ${TEST_PROGS}
|
728
|
-
@test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
|
729
|
-
@ for subdir in $(SUBDIRS) . ; do \
|
730
|
-
test "$$subdir" = "." -o "$$subdir" = "po" || \
|
731
|
-
( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
|
732
|
-
done
|
733
|
-
|
734
|
-
# test-report: run tests in subdirs and generate report
|
735
|
-
# perf-report: run tests in subdirs with -m perf and generate report
|
736
|
-
# full-report: like test-report: with -m perf and -m slow
|
737
|
-
test-report perf-report full-report: ${TEST_PROGS}
|
738
|
-
@test -z "${TEST_PROGS}" || { \
|
739
|
-
case $@ in \
|
740
|
-
test-report) test_options="-k";; \
|
741
|
-
perf-report) test_options="-k -m=perf";; \
|
742
|
-
full-report) test_options="-k -m=perf -m=slow";; \
|
743
|
-
esac ; \
|
744
|
-
if test -z "$$GTESTER_LOGDIR" ; then \
|
745
|
-
${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
|
746
|
-
elif test -n "${TEST_PROGS}" ; then \
|
747
|
-
${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
|
748
|
-
fi ; \
|
749
|
-
}
|
750
|
-
@ ignore_logdir=true ; \
|
751
|
-
if test -z "$$GTESTER_LOGDIR" ; then \
|
752
|
-
GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
|
753
|
-
ignore_logdir=false ; \
|
754
|
-
fi ; \
|
755
|
-
for subdir in $(SUBDIRS) . ; do \
|
756
|
-
test "$$subdir" = "." -o "$$subdir" = "po" || \
|
757
|
-
( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
|
758
|
-
done ; \
|
759
|
-
$$ignore_logdir || { \
|
760
|
-
echo '<?xml version="1.0"?>' > $@.xml ; \
|
761
|
-
echo '<report-collection>' >> $@.xml ; \
|
762
|
-
for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
|
763
|
-
sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $@.xml ; \
|
764
|
-
done ; \
|
765
|
-
echo >> $@.xml ; \
|
766
|
-
echo '</report-collection>' >> $@.xml ; \
|
767
|
-
rm -rf "$$GTESTER_LOGDIR"/ ; \
|
768
|
-
${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $@.xml >$@.html ; \
|
769
|
-
}
|
770
|
-
.PHONY: test test-report perf-report full-report
|
771
|
-
# run make test as part of make check
|
772
|
-
check-local: test
|
773
|
-
|
774
|
-
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
775
|
-
# Otherwise a system limit (for SysV at least) may be exceeded.
|
776
|
-
.NOEXPORT:
|