diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-04-06 13:35:05 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-04-06 13:35:05 +0000 |
commit | 0addcc0b8701a58ec82d3825ff4a687049c37b35 (patch) | |
tree | 0d01a634df7cc019393df638abf7022a07efe0ae /Build/source/utils/configure | |
parent | 24aeb8a67eb65d0e5e1a886e1c59627f1d5930c9 (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/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 5b024709991..2043603e812 100755 --- a/Build/source/utils/configure +++ b/Build/source/utils/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 @@ -1515,6 +1517,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 @@ -3062,6 +3066,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 |