summaryrefslogtreecommitdiff
path: root/Build/source/tetex.ac
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-16 00:03:16 +0000
committerKarl Berry <karl@freefriends.org>2006-01-16 00:03:16 +0000
commitcc68d22a4a87ea77bf2ea82288854d2abcfc1f3d (patch)
tree155cb9cab56d69e677bbc2b11edae71cead67b5f /Build/source/tetex.ac
parent269d9a5ff80f6f2e0279be58cf9b09f4e5ed86fa (diff)
from TeX
git-svn-id: svn://tug.org/texlive/trunk@1480 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/tetex.ac')
-rw-r--r--Build/source/tetex.ac62
1 files changed, 62 insertions, 0 deletions
diff --git a/Build/source/tetex.ac b/Build/source/tetex.ac
new file mode 100644
index 00000000000..d9d9324a7a3
--- /dev/null
+++ b/Build/source/tetex.ac
@@ -0,0 +1,62 @@
+# for texinfo
+: ${enable_install_warnings=no}
+export enable_install_warnings
+
+# e.g. for lcdf-typetools
+: ${enable_tetex_build=yes}
+export enable_tetex_build
+
+# we just build pdfetex, not pdftex and not etex:
+: ${with_etex=no} ${with_pdftex=no}
+export with_etex with_pdftex
+
+: ${enable_shared=no}
+export enable_shared
+
+# teTeX uses fmtutil / mktexfmt
+: ${enable_fmtutil=yes} ${with_mktexfmt_default=yes}
+export enable_fmtutil with_mktexfmt_default
+
+: ${enable_multiplatform=yes}
+if test "x$enable_multiplatform" = xyes \
+ && test "x$bindir" = 'x${exec_prefix}/bin'
+then
+ bindir="$bindir/$host"
+ ac_configure_args="$ac_configure_args --bindir=$bindir"
+fi
+test "${enable_nls+set}" = set || { enable_nls=no; export enable_nls; }
+
+AC_PREFIX_DEFAULT(/usr/local/teTeX)
+if test "x$prefix" = xNONE; then
+ prefix=$ac_default_prefix
+ ac_configure_args="$ac_configure_args --prefix=$ac_default_prefix"
+fi
+
+# teTeX enables tex-ipc by default
+enable_ipc=yes; export enable_ipc
+
+case "$target" in
+ *nextstep3*|*NEXTSTEP*)
+ with_xdvik=no; with_oxdvik=no
+ with_nextwin=yes; with_ps=dps
+ export with_xdvik with_oxdvik with_nextwin with_ps;;
+esac
+
+# teTeX uses the mf / mf-nowin split
+if test "x$no_x" != xyes; then
+ : ${with_mf_nowin=yes}
+ : ${with_x=yes}
+ export with_mf_nowin with_x
+fi
+
+# /bin/sh on ULTRIX is too broken for ncurses' configure
+case "$build" in
+ *ultrix4*)
+ case "$CONFIG_SHELL" in
+ /bin/sh|"")
+ if test -f /bin/ksh; then
+ CONFIG_SHELL=/bin/ksh; export CONFIG_SHELL
+ AC_MSG_WARN(Using /bin/ksh as new CONFIG_SHELL)
+ fi;;
+ esac;;
+esac