diff options
Diffstat (limited to 'Build/source/texk')
-rw-r--r-- | Build/source/texk/Makefile.in | 3 | ||||
-rwxr-xr-x | Build/source/texk/configure | 79 |
2 files changed, 80 insertions, 2 deletions
diff --git a/Build/source/texk/Makefile.in b/Build/source/texk/Makefile.in index 6a652ef350c..c311a10d933 100644 --- a/Build/source/texk/Makefile.in +++ b/Build/source/texk/Makefile.in @@ -72,6 +72,9 @@ am__aclocal_m4_deps = $(top_srcdir)/../m4/kpse-common.m4 \ $(top_srcdir)/../utils/t1utils/ac/withenable.ac \ $(top_srcdir)/../utils/tpic2pdftex/ac/withenable.ac \ $(top_srcdir)/../utils/vlna/ac/withenable.ac \ + $(top_srcdir)/../utils/xindy-new/ac/withenable.ac \ + $(top_srcdir)/../utils/xindy-new/ac/xindy.ac \ + $(top_srcdir)/../utils/xindy-new/ac/clisp.ac \ $(top_srcdir)/../utils/xindy/ac/withenable.ac \ $(top_srcdir)/../utils/xindy/ac/xindy.ac \ $(top_srcdir)/../texk/web2c/ac/withenable.ac \ diff --git a/Build/source/texk/configure b/Build/source/texk/configure index 14917b802be..842c0837bbf 100755 --- a/Build/source/texk/configure +++ b/Build/source/texk/configure @@ -651,10 +651,12 @@ enable_psutils enable_t1utils enable_tpic2pdftex enable_vlna -enable_xindy +enable_xindy_new enable_xindy_rules enable_xindy_docs +with_system_clisp with_xindy_recode +enable_xindy enable_web2c with_tex_banner with_editor @@ -1433,9 +1435,10 @@ 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 + --enable-xindy-new build the xindy-new package --enable-xindy-rules build and install make-rules package --enable-xindy-docs build and install documentation + --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 @@ -1525,6 +1528,10 @@ Optional Features: Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-system-clisp do not install `clisp' for `xindy', use the + installed version + --with-recode use `recode' instead of `iconv' to build xindy-new + [default: no] --with-xindy-recode For `xindy': use `recode' instead of `iconv' (default is NO) --with-tex-banner=STR version string appended to banner lines [Web2C YEAR] @@ -2359,6 +2366,74 @@ $as_echo "$as_me: Assuming \`--enable-vlna=$enable_vlna'" >&6;} esac +## utils/xindy-new/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory utils/xindy-new/ +## configure options and TL libraries required for xindy-new +# Check whether --enable-xindy-new was given. +if test "${enable_xindy_new+set}" = set; then : + enableval=$enable_xindy_new; +fi +case $enable_xindy_new in #( + yes) : + if test "x$cross_compiling" = xyes; then : + as_fn_error "Unable to cross compile xindy-new" "$LINENO" 5 +fi ;; #( + no) : + ;; #( + *) : + if test "x$cross_compiling" = xyes; then + enable_xindy_new=no + { $as_echo "$as_me:${as_lineno-$LINENO}: Cross compiling -> \`--disable-xindy-new'" >&5 +$as_echo "$as_me: Cross compiling -> \`--disable-xindy-new'" >&6;} + else + enable_xindy_new=no + { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--enable-xindy-new=$enable_xindy_new'" >&5 +$as_echo "$as_me: Assuming \`--enable-xindy-new=$enable_xindy_new'" >&6;} + ac_configure_args="$ac_configure_args '--enable-xindy-new=$enable_xindy_new'" + fi ;; +esac + +## utils/xindy-new/ac/xindy.ac: configure.ac fragment for the TeX Live subdirectory utils/xindy-new/ +## configure options for xindy-new +# Check whether --enable-xindy-rules was given. +if test "${enable_xindy_rules+set}" = set; then : + enableval=$enable_xindy_rules; +fi +# Check whether --enable-xindy-docs was given. +if test "${enable_xindy_docs+set}" = set; then : + enableval=$enable_xindy_docs; +fi + +# Check whether --with-system-clisp was given. +if test "${with_system_clisp+set}" = set; then : + withval=$with_system_clisp; +fi + +# Check whether --with-xindy-recode was given. +if test "${with_xindy_recode+set}" = set; then : + withval=$with_xindy_recode; +fi + +## utils/xindy-new/ac/clisp.ac: configure.ac fragment for the TeX Live subdirectory utils/xindy-new/ +## configure checks for xindy-new and clisp +case $with_system_clisp in #( + no) : + ;; #( + yes) : + if test "x$enable_native_texlive_build" = xyes; then : + as_fn_error "you can not use the installed clisp for a native TeX Live build" "$LINENO" 5 +fi ;; #( + *) : + if test "x$enable_native_texlive_build" = xyes; then : + with_system_clisp=no +else + with_system_clisp=yes +fi + { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--with-system-clisp=$with_system_clisp'" >&5 +$as_echo "$as_me: Assuming \`--with-system-clisp=$with_system_clisp'" >&6;} + ac_configure_args="$ac_configure_args '--with-system-clisp=$with_system_clisp'" ;; +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. |