diff options
Diffstat (limited to 'Build/source/configure')
-rwxr-xr-x | Build/source/configure | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Build/source/configure b/Build/source/configure index 6a6be082a35..419276d7a9a 100755 --- a/Build/source/configure +++ b/Build/source/configure @@ -765,6 +765,7 @@ utils/psutils utils/t1utils utils/texinfo utils/tpic2pdftex +utils/xindy texk' # Initialize some variables set by options. @@ -1371,6 +1372,7 @@ Optional Packages: --without-t1utils do not build the t1utils package --without-texinfo do not build the texinfo package --without-tpic2pdftex do not build the tpic2pdftex package + --without-xindy do not build the xindy package --without-afm2pl do not build the afm2pl package --without-bibtex8 do not build the bibtex8 package --without-cjkutils do not build the cjkutils package @@ -5314,6 +5316,7 @@ export with_cxx_runtime_hack # withenable.ac - Written long ago by Thomas Esser and Sebastian Rahtz. +# $Id: withenable.ac 7122 2008-03-24 13:49:08Z martin $ # Public domain. @@ -5367,6 +5370,11 @@ if test "${with_tpic2pdftex+set}" = set; then withval=$with_tpic2pdftex; fi +# Check whether --with-xindy was given. +if test "${with_xindy+set}" = set; then + withval=$with_xindy; +fi + @@ -9354,6 +9362,12 @@ if test -d $srcdir/utils/tpic2pdftex; then subdirs="$subdirs utils/tpic2pdftex" fi fi +if test -d $srcdir/utils/xindy; then + if test "x$with_xindy" != xno; then + ESUBDIRS="$ESUBDIRS utils/xindy" + subdirs="$subdirs utils/xindy" + fi +fi |