├── .gitignore ├── README.md ├── make ├── bootstrap.nmake ├── build.nmake ├── libcairo.nmake ├── libfreetype.nmake ├── libgd.nmake ├── libgmp.nmake ├── libgraphite2.nmake ├── libharfbuzz.nmake ├── libicudata.nmake ├── libicui18n.nmake ├── libicuio.nmake ├── libicuuc.nmake ├── libkpathsea.nmake ├── libluajit.nmake ├── libmpfi.nmake ├── libmpfr.nmake ├── libotfcc.nmake ├── libpaper.nmake ├── libpixman.nmake ├── libpng.nmake ├── libpotrace.nmake ├── libpplib.nmake ├── libptexenc.nmake ├── libruntime.nmake ├── libruntimep.nmake ├── libteckit.nmake ├── libtexlua53.nmake ├── libxpdf.nmake ├── libz.nmake ├── libzzip.nmake └── luatex.nmake ├── predef ├── bibtex-x │ └── config.h ├── cairo │ ├── cairo-features.h │ └── cairoint.h ├── chktex │ └── config.h ├── detex │ └── c-auto.h ├── dtl │ └── config.h ├── dvi2tty │ └── c-auto.h ├── dvidvi │ └── config.h ├── dviout-util │ └── config.h ├── dvipdfmx │ └── config.h ├── dvipng │ └── config.h ├── dvips │ └── c-auto.h ├── dvisvgm │ ├── config.h │ ├── ttf │ │ └── .gitkeep │ └── version.hpp ├── gd │ └── config.h ├── gmp │ ├── config.h │ └── gmp.h ├── gregorio │ └── config_.h ├── gsftopk │ └── c-auto.h ├── harfbuzz │ └── hb-version.h ├── kpathsea │ ├── c-auto.h │ ├── dirent.c │ ├── dirent.h │ ├── kpathsea.h │ └── paths.h ├── lcdf-typetools │ └── config.h ├── libpng │ └── pnglibconf.h ├── luatex │ ├── ff-config.h │ ├── patch │ │ ├── macbinary.c │ │ ├── noprefs.c │ │ ├── splinefont.c │ │ └── start.c │ ├── sys │ │ └── time.h │ └── unistd.h ├── makeindex │ └── c-auto.h ├── mendex │ └── c-auto.h ├── mpfi │ └── mpfi_config.h ├── mpfr │ └── config.h ├── otfcc │ └── polyfill-msvc │ │ └── winfns.h ├── pixman │ └── pixman-version.h ├── ptexenc │ └── c-auto.h ├── teckit │ ├── TECkit_Common.h │ ├── TECkit_Compiler.h │ └── TECkit_Engine.h ├── ttf2pk2 │ └── config.h ├── ttfdump │ └── config.h ├── upmendex │ └── c-auto.h ├── w2c │ └── c-auto.h ├── xpdf │ └── aconf.h ├── zlib │ └── zconf.h └── zziplib │ └── zzip │ └── _msvc.h └── tools ├── bin └── .gitkeep ├── build-boot.bat ├── build-web2c.bat ├── build.py ├── cat.py ├── convert.py ├── dog.py ├── gen-icu-data.py ├── gen-predef-header.py ├── make-exe-warpper.bat ├── make-libs.bat ├── pig.py ├── set-env-a64.bat ├── set-env-x64.bat └── set-env-x86.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/README.md -------------------------------------------------------------------------------- /make/bootstrap.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/bootstrap.nmake -------------------------------------------------------------------------------- /make/build.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/build.nmake -------------------------------------------------------------------------------- /make/libcairo.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libcairo.nmake -------------------------------------------------------------------------------- /make/libfreetype.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libfreetype.nmake -------------------------------------------------------------------------------- /make/libgd.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libgd.nmake -------------------------------------------------------------------------------- /make/libgmp.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libgmp.nmake -------------------------------------------------------------------------------- /make/libgraphite2.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libgraphite2.nmake -------------------------------------------------------------------------------- /make/libharfbuzz.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libharfbuzz.nmake -------------------------------------------------------------------------------- /make/libicudata.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libicudata.nmake -------------------------------------------------------------------------------- /make/libicui18n.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libicui18n.nmake -------------------------------------------------------------------------------- /make/libicuio.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libicuio.nmake -------------------------------------------------------------------------------- /make/libicuuc.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libicuuc.nmake -------------------------------------------------------------------------------- /make/libkpathsea.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libkpathsea.nmake -------------------------------------------------------------------------------- /make/libluajit.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libluajit.nmake -------------------------------------------------------------------------------- /make/libmpfi.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libmpfi.nmake -------------------------------------------------------------------------------- /make/libmpfr.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libmpfr.nmake -------------------------------------------------------------------------------- /make/libotfcc.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libotfcc.nmake -------------------------------------------------------------------------------- /make/libpaper.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libpaper.nmake -------------------------------------------------------------------------------- /make/libpixman.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libpixman.nmake -------------------------------------------------------------------------------- /make/libpng.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libpng.nmake -------------------------------------------------------------------------------- /make/libpotrace.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libpotrace.nmake -------------------------------------------------------------------------------- /make/libpplib.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libpplib.nmake -------------------------------------------------------------------------------- /make/libptexenc.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libptexenc.nmake -------------------------------------------------------------------------------- /make/libruntime.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libruntime.nmake -------------------------------------------------------------------------------- /make/libruntimep.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libruntimep.nmake -------------------------------------------------------------------------------- /make/libteckit.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libteckit.nmake -------------------------------------------------------------------------------- /make/libtexlua53.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libtexlua53.nmake -------------------------------------------------------------------------------- /make/libxpdf.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libxpdf.nmake -------------------------------------------------------------------------------- /make/libz.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libz.nmake -------------------------------------------------------------------------------- /make/libzzip.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/libzzip.nmake -------------------------------------------------------------------------------- /make/luatex.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/make/luatex.nmake -------------------------------------------------------------------------------- /predef/bibtex-x/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/bibtex-x/config.h -------------------------------------------------------------------------------- /predef/cairo/cairo-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/cairo/cairo-features.h -------------------------------------------------------------------------------- /predef/cairo/cairoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/cairo/cairoint.h -------------------------------------------------------------------------------- /predef/chktex/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/chktex/config.h -------------------------------------------------------------------------------- /predef/detex/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/detex/c-auto.h -------------------------------------------------------------------------------- /predef/dtl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/dtl/config.h -------------------------------------------------------------------------------- /predef/dvi2tty/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/dvi2tty/c-auto.h -------------------------------------------------------------------------------- /predef/dvidvi/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/dvidvi/config.h -------------------------------------------------------------------------------- /predef/dviout-util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/dviout-util/config.h -------------------------------------------------------------------------------- /predef/dvipdfmx/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/dvipdfmx/config.h -------------------------------------------------------------------------------- /predef/dvipng/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/dvipng/config.h -------------------------------------------------------------------------------- /predef/dvips/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/dvips/c-auto.h -------------------------------------------------------------------------------- /predef/dvisvgm/config.h: -------------------------------------------------------------------------------- 1 | /* config.h for dvisvgm */ -------------------------------------------------------------------------------- /predef/dvisvgm/ttf/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /predef/dvisvgm/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/dvisvgm/version.hpp -------------------------------------------------------------------------------- /predef/gd/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/gd/config.h -------------------------------------------------------------------------------- /predef/gmp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/gmp/config.h -------------------------------------------------------------------------------- /predef/gmp/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/gmp/gmp.h -------------------------------------------------------------------------------- /predef/gregorio/config_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/gregorio/config_.h -------------------------------------------------------------------------------- /predef/gsftopk/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/gsftopk/c-auto.h -------------------------------------------------------------------------------- /predef/harfbuzz/hb-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/harfbuzz/hb-version.h -------------------------------------------------------------------------------- /predef/kpathsea/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/kpathsea/c-auto.h -------------------------------------------------------------------------------- /predef/kpathsea/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/kpathsea/dirent.c -------------------------------------------------------------------------------- /predef/kpathsea/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/kpathsea/dirent.h -------------------------------------------------------------------------------- /predef/kpathsea/kpathsea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/kpathsea/kpathsea.h -------------------------------------------------------------------------------- /predef/kpathsea/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/kpathsea/paths.h -------------------------------------------------------------------------------- /predef/lcdf-typetools/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/lcdf-typetools/config.h -------------------------------------------------------------------------------- /predef/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/libpng/pnglibconf.h -------------------------------------------------------------------------------- /predef/luatex/ff-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/luatex/ff-config.h -------------------------------------------------------------------------------- /predef/luatex/patch/macbinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/luatex/patch/macbinary.c -------------------------------------------------------------------------------- /predef/luatex/patch/noprefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/luatex/patch/noprefs.c -------------------------------------------------------------------------------- /predef/luatex/patch/splinefont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/luatex/patch/splinefont.c -------------------------------------------------------------------------------- /predef/luatex/patch/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/luatex/patch/start.c -------------------------------------------------------------------------------- /predef/luatex/sys/time.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /predef/luatex/unistd.h: -------------------------------------------------------------------------------- 1 | /* placeholder */ 2 | -------------------------------------------------------------------------------- /predef/makeindex/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/makeindex/c-auto.h -------------------------------------------------------------------------------- /predef/mendex/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/mendex/c-auto.h -------------------------------------------------------------------------------- /predef/mpfi/mpfi_config.h: -------------------------------------------------------------------------------- 1 | #define PACKAGE_VERSION "1.5.4" 2 | -------------------------------------------------------------------------------- /predef/mpfr/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/mpfr/config.h -------------------------------------------------------------------------------- /predef/otfcc/polyfill-msvc/winfns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/otfcc/polyfill-msvc/winfns.h -------------------------------------------------------------------------------- /predef/pixman/pixman-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/pixman/pixman-version.h -------------------------------------------------------------------------------- /predef/ptexenc/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/ptexenc/c-auto.h -------------------------------------------------------------------------------- /predef/teckit/TECkit_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/teckit/TECkit_Common.h -------------------------------------------------------------------------------- /predef/teckit/TECkit_Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/teckit/TECkit_Compiler.h -------------------------------------------------------------------------------- /predef/teckit/TECkit_Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/teckit/TECkit_Engine.h -------------------------------------------------------------------------------- /predef/ttf2pk2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/ttf2pk2/config.h -------------------------------------------------------------------------------- /predef/ttfdump/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/ttfdump/config.h -------------------------------------------------------------------------------- /predef/upmendex/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/upmendex/c-auto.h -------------------------------------------------------------------------------- /predef/w2c/c-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/w2c/c-auto.h -------------------------------------------------------------------------------- /predef/xpdf/aconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/xpdf/aconf.h -------------------------------------------------------------------------------- /predef/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/zlib/zconf.h -------------------------------------------------------------------------------- /predef/zziplib/zzip/_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/predef/zziplib/zzip/_msvc.h -------------------------------------------------------------------------------- /tools/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build-boot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/build-boot.bat -------------------------------------------------------------------------------- /tools/build-web2c.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/build-web2c.bat -------------------------------------------------------------------------------- /tools/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/build.py -------------------------------------------------------------------------------- /tools/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/cat.py -------------------------------------------------------------------------------- /tools/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/convert.py -------------------------------------------------------------------------------- /tools/dog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/dog.py -------------------------------------------------------------------------------- /tools/gen-icu-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/gen-icu-data.py -------------------------------------------------------------------------------- /tools/gen-predef-header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/gen-predef-header.py -------------------------------------------------------------------------------- /tools/make-exe-warpper.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/make-exe-warpper.bat -------------------------------------------------------------------------------- /tools/make-libs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/make-libs.bat -------------------------------------------------------------------------------- /tools/pig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/pig.py -------------------------------------------------------------------------------- /tools/set-env-a64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/set-env-a64.bat -------------------------------------------------------------------------------- /tools/set-env-x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/set-env-x64.bat -------------------------------------------------------------------------------- /tools/set-env-x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerkma/texlive-msvc-build/HEAD/tools/set-env-x86.bat --------------------------------------------------------------------------------