diff options
Diffstat (limited to 'Build/source/utils/configure')
-rwxr-xr-x | Build/source/utils/configure | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Build/source/utils/configure b/Build/source/utils/configure index e0e02498b18..57d3c1aa167 100755 --- a/Build/source/utils/configure +++ b/Build/source/utils/configure @@ -673,6 +673,7 @@ enable_cxx_runtime_hack enable_libtool_hack enable_biber enable_chktex +enable_mtx enable_pmx enable_ps2eps enable_psutils @@ -823,6 +824,7 @@ LIBS CPPFLAGS' ac_subdirs_all='biber chktex +mtx pmx ps2eps psutils @@ -1461,6 +1463,7 @@ Optional Features: --enable-libtool-hack ignore libtool dependency_libs --disable-biber do not build the biber package --disable-chktex do not build the chktex package + --disable-mtx do not build the mtx package --disable-pmx do not build the pmx package --disable-ps2eps do not build the ps2eps package --disable-psutils do not build the psutils package @@ -3220,6 +3223,25 @@ $as_echo "$as_me: Assuming \`--enable-chktex=$enable_chktex'" >&6;} esac +## utils/mtx/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory utils/mtx/ +## configure options and TL libraries required for mtx +# Check whether --enable-mtx was given. +if test "${enable_mtx+set}" = set; then : + enableval=$enable_mtx; +fi +case $enable_mtx in #( + yes|no) : + ;; #( + *) : + + enable_mtx=$enable_all_pkgs + { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--enable-mtx=$enable_mtx'" >&5 +$as_echo "$as_me: Assuming \`--enable-mtx=$enable_mtx'" >&6;} + ac_configure_args="$ac_configure_args '--enable-mtx=$enable_mtx'" + ;; +esac + + ## utils/pmx/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory utils/pmx/ ## configure options and TL libraries required for pmx # Check whether --enable-pmx was given. @@ -5831,6 +5853,16 @@ if test -x $srcdir/chktex/configure; then fi +if test -x $srcdir/mtx/configure; then + test "x$enable_mtx" = xno || SUBUTILS="$SUBUTILS mtx" + DIST_SUBUTILS="$DIST_SUBUTILS mtx" + if false; then + subdirs="$subdirs mtx" + + fi +fi + + if test -x $srcdir/pmx/configure; then test "x$enable_pmx" = xno || SUBUTILS="$SUBUTILS pmx" DIST_SUBUTILS="$DIST_SUBUTILS pmx" |