summaryrefslogtreecommitdiff
path: root/Build/source/texk/configure
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/configure')
-rwxr-xr-xBuild/source/texk/configure101
1 files changed, 100 insertions, 1 deletions
diff --git a/Build/source/texk/configure b/Build/source/texk/configure
index a61c0d322d0..609df1d675a 100755
--- a/Build/source/texk/configure
+++ b/Build/source/texk/configure
@@ -657,6 +657,7 @@ enable_xindy_docs
with_clisp_runtime
with_xindy_recode
enable_xindy
+enable_ptexenc
enable_web2c
with_tex_banner
with_editor
@@ -666,6 +667,7 @@ enable_ipc
enable_omfonts
enable_tex
enable_etex
+enable_ptex
enable_aleph
enable_pdftex
enable_luatex
@@ -720,6 +722,7 @@ enable_t1testpage
enable_ttftotype42
enable_updmap
enable_makeindexk
+enable_mendexk
enable_musixflx
enable_ps2pkm
enable_seetexk
@@ -771,7 +774,8 @@ enable_maintainer_mode
ac_precious_vars='build_alias
host_alias
target_alias'
-ac_subdirs_all='web2c
+ac_subdirs_all='ptexenc
+web2c
afm2pl
bibtex8
bibtexu
@@ -791,6 +795,8 @@ gsftopk
lacheck
lcdf-typetools
makeindexk
+makejvf
+mendexk
musixflx
ps2pkm
seetexk
@@ -1440,6 +1446,7 @@ Optional Features:
--enable-xindy-rules build and install make-rules package
--enable-xindy-docs build and install documentation
--enable-xindy build the xindy package
+ --disable-ptexenc do not build the ptexenc package
--disable-web2c do not build the web2c (TeX & Co.) package
--enable-auto-core cause TeX&MF to dump core, given a certain
filename
@@ -1450,6 +1457,7 @@ Optional Features:
versions)
--disable-tex do not compile and install TeX
--enable-etex compile and install e-TeX
+ --disable-ptex do not compile and install pTeX
--disable-aleph do not compile and install Aleph
--disable-pdftex do not compile and install pdfTeX
--disable-luatex do not compile and install luaTeX
@@ -1503,6 +1511,7 @@ Optional Features:
--disable-auto-t1dotlessj disable running t1dotlessj from otftotfm
--disable-auto-updmap disable running updmap from otftotfm
--disable-makeindexk do not build the makeindexk package
+ --disable-mendexk do not build the mendexk package
--disable-musixflx do not build the musixflx package
--disable-ps2pkm do not build the ps2pkm package
--disable-seetexk do not build the seetexk package
@@ -2485,6 +2494,27 @@ fi
+# Check whether --enable-ptexenc was given.
+if test "${enable_ptexenc+set}" = set; then :
+ enableval=$enable_ptexenc;
+fi
+case $enable_ptexenc in #(
+ yes|no) :
+ ;; #(
+ *) :
+
+ enable_ptexenc=$enable_all_pkgs
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--enable-ptexenc=$enable_ptexenc'" >&5
+$as_echo "$as_me: Assuming \`--enable-ptexenc=$enable_ptexenc'" >&6;}
+ ac_configure_args="$ac_configure_args '--enable-ptexenc=$enable_ptexenc'"
+ ;;
+esac
+
+test "x$enable_ptexenc" = xno || {
+ need_kpathsea=yes
+}
+
+
## texk/web2c/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory texk/web2c/
## configure options and TL libraries required for web2c
# Check whether --enable-web2c was given.
@@ -2557,6 +2587,20 @@ case $enable_etex in #(
*) :
enable_etex=no ;;
esac
+# Check whether --enable-ptex was given.
+if test "${enable_ptex+set}" = set; then :
+ enableval=$enable_ptex;
+fi
+case $enable_ptex in #(
+ yes|no) :
+ ;; #(
+ *) :
+ enable_ptex=yes ;;
+esac
+
+test "x$enable_web2c:$enable_ptex" = xyes:yes && {
+ need_ptexenc=yes
+}
# Check whether --enable-aleph was given.
if test "${enable_aleph+set}" = set; then :
enableval=$enable_aleph;
@@ -3220,6 +3264,31 @@ test "x$enable_makeindexk" = xno || {
}
+
+## texk/mendexk/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory texk/mendexk/
+## configure options and TL libraries required for makeindexk
+# Check whether --enable-mendexk was given.
+if test "${enable_mendexk+set}" = set; then :
+ enableval=$enable_mendexk;
+fi
+case $enable_mendexk in #(
+ yes|no) :
+ ;; #(
+ *) :
+
+ enable_mendexk=$enable_all_pkgs
+ { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--enable-mendexk=$enable_mendexk'" >&5
+$as_echo "$as_me: Assuming \`--enable-mendexk=$enable_mendexk'" >&6;}
+ ac_configure_args="$ac_configure_args '--enable-mendexk=$enable_mendexk'"
+ ;;
+esac
+
+test "x$enable_mendexk" = xno || {
+ need_kpathsea=yes
+ need_ptexenc=yes
+}
+
+
## texk/musixflx/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory texk/musixflx/
## configure options and TL libraries required for musixflx
# Check whether --enable-musixflx was given.
@@ -4485,6 +4554,16 @@ DIST_SUBTEXK=
+if test -x $srcdir/ptexenc/configure; then
+ test "x$enable_ptexenc" = xno || SUBTEXK="$SUBTEXK ptexenc"
+ DIST_SUBTEXK="$DIST_SUBTEXK ptexenc"
+ if false; then
+ subdirs="$subdirs ptexenc"
+
+ fi
+fi
+
+
if test -x $srcdir/web2c/configure; then
test "x$enable_web2c" = xno || SUBTEXK="$SUBTEXK web2c"
DIST_SUBTEXK="$DIST_SUBTEXK web2c"
@@ -4685,6 +4764,26 @@ if test -x $srcdir/makeindexk/configure; then
fi
+if test -x $srcdir/makejvf/configure; then
+ test "x$enable_makejvf" = xno || SUBTEXK="$SUBTEXK makejvf"
+ DIST_SUBTEXK="$DIST_SUBTEXK makejvf"
+ if false; then
+ subdirs="$subdirs makejvf"
+
+ fi
+fi
+
+
+if test -x $srcdir/mendexk/configure; then
+ test "x$enable_mendexk" = xno || SUBTEXK="$SUBTEXK mendexk"
+ DIST_SUBTEXK="$DIST_SUBTEXK mendexk"
+ if false; then
+ subdirs="$subdirs mendexk"
+
+ fi
+fi
+
+
if test -x $srcdir/musixflx/configure; then
test "x$enable_musixflx" = xno || SUBTEXK="$SUBTEXK musixflx"
DIST_SUBTEXK="$DIST_SUBTEXK musixflx"