summaryrefslogtreecommitdiff
path: root/Build/source/libs
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/libs
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/libs')
-rw-r--r--Build/source/libs/Makefile.in2
-rwxr-xr-xBuild/source/libs/configure32
2 files changed, 34 insertions, 0 deletions
diff --git a/Build/source/libs/Makefile.in b/Build/source/libs/Makefile.in
index af0faf50d8b..78c543642a4 100644
--- a/Build/source/libs/Makefile.in
+++ b/Build/source/libs/Makefile.in
@@ -91,6 +91,8 @@ am__aclocal_m4_deps = $(top_srcdir)/../m4/kpse-cxx-hack.m4 \
$(top_srcdir)/../texk/xdv2pdf/ac/withenable.ac \
$(top_srcdir)/../texk/xdvik/ac/withenable.ac \
$(top_srcdir)/../texk/xdvipdfmx/ac/withenable.ac \
+ $(top_srcdir)/../texk/tetex/ac/withenable.ac \
+ $(top_srcdir)/../texk/texlive/ac/withenable.ac \
$(top_srcdir)/../texk/kpathsea/ac/withenable.ac \
$(top_srcdir)/../texk/kpathsea/ac/web2c.ac \
$(top_srcdir)/../libs/ac/withenable.ac \
diff --git a/Build/source/libs/configure b/Build/source/libs/configure
index ad9d054cb06..70e7bd8188c 100755
--- a/Build/source/libs/configure
+++ b/Build/source/libs/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
@@ -1518,6 +1520,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
@@ -3065,6 +3069,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