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/chktex/configure.ac | |
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/chktex/configure.ac')
-rw-r--r-- | Build/source/texk/chktex/configure.ac | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/Build/source/texk/chktex/configure.ac b/Build/source/texk/chktex/configure.ac new file mode 100644 index 00000000000..9be21f06670 --- /dev/null +++ b/Build/source/texk/chktex/configure.ac @@ -0,0 +1,58 @@ +dnl Process this file with autoconf to produce a configure script. +dnl +dnl Copyright (C) 2010-2012 Peter Breitenlohner <tex-live@tug.org> +dnl +dnl This file is free software; the copyright holder +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. +dnl +dnl ********************************************************************* +dnl +dnl Adapted for TeX Live from chktex-1.6.4/configure.in +dnl +dnl ********************************************************************* +dnl +m4_include([version.ac])[] dnl define chktex_version +AC_INIT([ChkTeX for TeX Live], chktex_version, [tex-k@tug.org]) +AC_PREREQ([2.65]) +AC_CONFIG_SRCDIR([chktex-]chktex_version[/ChkTeX.c]) +AC_CONFIG_AUX_DIR([../../build-aux]) +AC_CONFIG_MACRO_DIR([../../m4]) + +dnl Common code for all programs using libkpathsea. +KPSE_COMMON([chktex]) + +dnl Checks for programs. +KPSE_CHECK_PDFLATEX + +dnl No termlib/termcap/ncurses library for TeX Live + +dnl Checks for header files. +AC_CHECK_HEADERS([stat.h stdarg.h sys/stat.h]) + +dnl Checks for library functions. +AC_FUNC_VPRINTF +AC_CHECK_FUNCS([access closedir fileno isatty opendir readdir stat strcasecmp strdup strlwr strtol]) + +dnl Rebuild ChkTeX.pdf if required and maintainer-mode is enabled. +test "x$enable_maintainer_mode" = xyes && PDF_DEPEND=ChkTeX.tex +AC_SUBST([PDF_DEPEND]) + +AC_CONFIG_HEADERS([config.h]) +AC_DEFINE([TEX_LIVE], 1, [Define to 1 for a TeX Live build.]) + +KPSE_CHECK_WIN32 +AM_CONDITIONAL([WIN32], [test "x$kpse_cv_have_win32" != xno]) +AM_CONDITIONAL([WIN32_WRAP], + [test -r $srcdir/../../texk/texlive/w32_wrapper/runscript.exe]) + +AC_SUBST([CHKTEX_TREE], [chktex-]chktex_version) +AC_SUBST([PERL5], ['/usr/bin/env perl']) + +KPSE_KPATHSEA_FLAGS + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([ChkTeX.tmp:chktex-]chktex_version[/ChkTeX.tex.in]) +AC_CONFIG_FILES([deweb.pl:chktex-]chktex_version[/deweb.in], [chmod +x deweb.pl]) + +AC_OUTPUT |