diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-24 09:00:18 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-24 09:00:18 +0000 |
commit | c1841336503cc8eb2355c2eab40012c856f18369 (patch) | |
tree | cc621dbfe9646083a4ae860a614f291bdb97ce58 /Build/source/texk/configure | |
parent | 5c61483aad70d3170b38c8c4a5b74d6f1c7581fd (diff) |
chktex: Move from utils/ to texk/, now using kpathsea
git-svn-id: svn://tug.org/texlive/trunk@27137 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/configure')
-rwxr-xr-x | Build/source/texk/configure | 57 |
1 files changed, 36 insertions, 21 deletions
diff --git a/Build/source/texk/configure b/Build/source/texk/configure index ad36e695dcb..b1995174714 100755 --- a/Build/source/texk/configure +++ b/Build/source/texk/configure @@ -692,7 +692,6 @@ enable_multiplatform enable_cxx_runtime_hack enable_libtool_hack enable_biber -enable_chktex enable_m_tx enable_pmx enable_ps2eps @@ -747,6 +746,7 @@ enable_web_progs enable_afm2pl enable_bibtex8 enable_bibtexu +enable_chktex enable_cjkutils enable_detex enable_devnag @@ -846,6 +846,7 @@ ac_subdirs_all='web2c afm2pl bibtex8 bibtexu +chktex cjkutils detex devnag @@ -1502,7 +1503,6 @@ Optional Features: --enable-cxx-runtime-hack link C++ runtime statically --enable-libtool-hack ignore libtool dependency_libs --disable-biber do not build the biber package - --disable-chktex do not build the chktex package --disable-m-tx do not build the m-tx package --disable-pmx do not build the pmx package --disable-ps2eps do not build the ps2eps package @@ -1556,6 +1556,7 @@ Optional Features: --disable-afm2pl do not build the afm2pl package --disable-bibtex8 do not build the bibtex8 package --disable-bibtexu do not build the bibtexu package + --disable-chktex do not build the chktex package --disable-cjkutils do not build the cjkutils package --disable-detex do not build the detex package --disable-devnag do not build the devnag package @@ -3246,25 +3247,6 @@ $as_echo "$as_me: Assuming \`--enable-biber=$enable_biber'" >&6;} esac -## utils/chktex/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory utils/chktex/ -## configure options and TL libraries required for chktex -# Check whether --enable-chktex was given. -if test "${enable_chktex+set}" = set; then : - enableval=$enable_chktex; -fi -case $enable_chktex in #( - yes|no) : - ;; #( - *) : - - enable_chktex=$enable_all_pkgs - { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--enable-chktex=$enable_chktex'" >&5 -$as_echo "$as_me: Assuming \`--enable-chktex=$enable_chktex'" >&6;} - ac_configure_args="$ac_configure_args '--enable-chktex=$enable_chktex'" - ;; -esac - - ## utils/m-tx/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory utils/m-tx/ ## configure options and TL libraries required for mtx # Check whether --enable-m-tx was given. @@ -3862,6 +3844,29 @@ test "x$enable_bibtexu" = xno || { } +## texk/chktex/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory texk/chktex/ +## configure options and TL libraries required for chktex +# Check whether --enable-chktex was given. +if test "${enable_chktex+set}" = set; then : + enableval=$enable_chktex; +fi +case $enable_chktex in #( + yes|no) : + ;; #( + *) : + + enable_chktex=$enable_all_pkgs + { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--enable-chktex=$enable_chktex'" >&5 +$as_echo "$as_me: Assuming \`--enable-chktex=$enable_chktex'" >&6;} + ac_configure_args="$ac_configure_args '--enable-chktex=$enable_chktex'" + ;; +esac + +test "x$enable_chktex" = xno || { + need_kpathsea=yes +} + + ## texk/cjkutils/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory texk/cjkutils/ ## configure options and TL libraries required for cjkutils # Check whether --enable-cjkutils was given. @@ -5930,6 +5935,16 @@ if test -x $srcdir/bibtexu/configure; then fi +if test -x $srcdir/chktex/configure; then + test "x$enable_chktex" = xno || SUBTEXK="$SUBTEXK chktex" + DIST_SUBTEXK="$DIST_SUBTEXK chktex" + if false; then + subdirs="$subdirs chktex" + + fi +fi + + if test -x $srcdir/cjkutils/configure; then test "x$enable_cjkutils" = xno || SUBTEXK="$SUBTEXK cjkutils" DIST_SUBTEXK="$DIST_SUBTEXK cjkutils" |