diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2008-05-27 23:43:50 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2008-05-27 23:43:50 +0000 |
commit | 0b10fb49c570a2c6833ed521be1ebe2addec7059 (patch) | |
tree | 4b30592261c5203483683420d92c4be5a2ccd981 /Build/source | |
parent | 034018303a744b73a96e205215ae9b0a151f3779 (diff) |
more default options for configure
git-svn-id: svn://tug.org/texlive/trunk@8370 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rwxr-xr-x | Build/source/Build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Build/source/Build b/Build/source/Build index 606ddfbcaa8..ad973538c1c 100755 --- a/Build/source/Build +++ b/Build/source/Build @@ -51,6 +51,12 @@ cd $TL_WORKDIR || exit 1 # allow override of xdvi toolkit, default to standard xaw. : ${TL_CONF_XDVI_TOOLKIT=--with-xdvi-x-toolkit=xaw} +# default to building ICU without thread support (xetex doesn't need it). +: ${TL_CONF_THREADS=--disable-threads} + +# default to include freetype2 support for old Mac font file formats. +: ${TL_CONF_MAC_FONTS=--with-old-mac-fonts} + # avoid xindy by default, it requires clisp (see utils/README). : ${TL_CONF_XINDY=--without-xindy} @@ -77,6 +83,8 @@ export GNUMAKE --prefix=$TL_INSTALL_DEST \ --datadir=$TL_INSTALL_DEST \ $TL_CONF_XDVI_TOOLKIT \ + $TL_CONF_THREADS \ + $TL_CONF_MAC_FONTS \ $TL_CONF_XINDY \ $TL_CONFIGURE_ARGS \ "$@" \ |