diff options
Diffstat (limited to 'Build/source/utils/configure')
-rwxr-xr-x | Build/source/utils/configure | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/Build/source/utils/configure b/Build/source/utils/configure index f4abe2497ba..648590966e9 100755 --- a/Build/source/utils/configure +++ b/Build/source/utils/configure @@ -692,6 +692,7 @@ enable_psutils enable_t1utils enable_tpic2pdftex enable_vlna +enable_xindy enable_web2c with_editor enable_auto_core @@ -807,7 +808,8 @@ ps2eps psutils t1utils tpic2pdftex -vlna' +vlna +xindy' # Initialize some variables set by options. ac_init_help= @@ -1450,12 +1452,12 @@ Optional Features: --disable-t1utils do not build the t1utils package --disable-tpic2pdftex do not build the tpic2pdftex package --disable-vlna do not build the vlna package + --enable-xindy build the xindy package --disable-web2c do not build the web2c (TeX & Co.) package --enable-auto-core cause TeX&MF to dump core, given a certain filename --disable-dump-share make fmt/base/mem files architecture-dependent - --disable-ipc disable TeX's --ipc option, i.e., pipe to a - program + --enable-ipc enable TeX's --ipc option, i.e., pipe to a program --disable-tex do not compile and install TeX --enable-etex compile and install e-TeX --disable-aleph do not compile and install Aleph @@ -2315,6 +2317,21 @@ $as_echo "$as_me: Assuming \`--enable-vlna=$enable_vlna'" >&6;} esac +## utils/xindy/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory utils/xindy/ +## configure options and TL libraries required for xindy +# Check whether --enable-xindy was given. +if test "${enable_xindy+set}" = set; then + enableval=$enable_xindy; +fi +case $enable_xindy in #( + yes|no);; #( + *) enable_xindy=no + { $as_echo "$as_me:$LINENO: Assuming \`--enable-xindy=$enable_xindy'" >&5 +$as_echo "$as_me: Assuming \`--enable-xindy=$enable_xindy'" >&6;} + ac_configure_args="$ac_configure_args '--enable-xindy=$enable_xindy'";; +esac + + ## texk/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory texk/ @@ -4167,6 +4184,16 @@ if test -x $srcdir/vlna/configure; then fi +if test -x $srcdir/xindy/configure; then + test "x$enable_xindy" = xno || SUBUTILS="$SUBUTILS xindy" + DIST_SUBUTILS="$DIST_SUBUTILS xindy" + if false; then + subdirs="$subdirs xindy" + + fi +fi + + { $as_echo "$as_me:$LINENO: result: $SUBUTILS" >&5 |