summaryrefslogtreecommitdiff
path: root/Build/source/texk/configure
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-04-06 13:35:05 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-04-06 13:35:05 +0000
commit0addcc0b8701a58ec82d3825ff4a687049c37b35 (patch)
tree0d01a634df7cc019393df638abf7022a07efe0ae /Build/source/texk/configure
parent24aeb8a67eb65d0e5e1a886e1c59627f1d5930c9 (diff)
new build system: fix some install dirs, pdftex mingw32 regex library
git-svn-id: svn://tug.org/texlive/trunk@12641 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/configure')
-rwxr-xr-xBuild/source/texk/configure32
1 files changed, 32 insertions, 0 deletions
diff --git a/Build/source/texk/configure b/Build/source/texk/configure
index 18d9678ddca..65c61f3e647 100755
--- a/Build/source/texk/configure
+++ b/Build/source/texk/configure
@@ -759,6 +759,8 @@ enable_ttfdump
enable_xdv2pdf
enable_xdvik
enable_xdvipdfmx
+enable_tetex
+enable_texlive
with_system_kpathsea
with_kpathsea_includes
with_kpathsea_libdir
@@ -1539,6 +1541,8 @@ Optional Features:
--disable-xdv2pdf do not build the xdv2pdf package
--disable-xdvik do not build the xdvik package
--disable-xdvipdfmx do not build the xdvipdfmx package
+ --disable-tetex do not build the tetex (teTeX scripts) package
+ --disable-texlive do not build the texlive (TeX Live scripts) package
--disable-mktexmf-default do not run mktexmf if MF source missing
--disable-mktexpk-default do not run mktexpk if PK font missing
--disable-mktextfm-default do not run mktextfm if TFM file missing
@@ -3086,6 +3090,34 @@ test "x$enable_xdvipdfmx" = xno || {
}
+## texk/tetex/ac/withenable.ac
+## configure options and TL libraries required for tetex
+# Check whether --enable-tetex was given.
+if test "${enable_tetex+set}" = set; then
+ enableval=$enable_tetex;
+fi
+case $enable_tetex in #(
+ yes|no);; #(
+ *) enable_tetex=$enable_all_pkgs
+ { $as_echo "$as_me:$LINENO: Assuming \`--enable-tetex=$enable_tetex'" >&5
+$as_echo "$as_me: Assuming \`--enable-tetex=$enable_tetex'" >&6;}
+ ac_configure_args="$ac_configure_args '--enable-tetex=$enable_tetex'";;
+esac
+
+
+## texk/texlive/ac/withenable.ac
+## configure options and TL libraries required for texlive
+# Check whether --enable-texlive was given.
+if test "${enable_texlive+set}" = set; then
+ enableval=$enable_texlive;
+fi
+case $enable_texlive in #(
+ yes|no);; #(
+ *) enable_texlive=$enable_all_pkgs
+ { $as_echo "$as_me:$LINENO: Assuming \`--enable-texlive=$enable_texlive'" >&5
+$as_echo "$as_me: Assuming \`--enable-texlive=$enable_texlive'" >&6;}
+ ac_configure_args="$ac_configure_args '--enable-texlive=$enable_texlive'";;
+esac