diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2008-06-30 08:26:46 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2008-06-30 08:26:46 +0000 |
commit | a2774fe41d8a79c86235363628f62e2e445bb5bc (patch) | |
tree | 173c0f1201b809390fc29a20b77da981e370d87d /Build/source/utils/vlna/configure.ac | |
parent | b8bf3199ea394bed2a8fcec6f3210b688909a772 (diff) |
cleanup utils/vlna
git-svn-id: svn://tug.org/texlive/trunk@9104 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/vlna/configure.ac')
-rw-r--r-- | Build/source/utils/vlna/configure.ac | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Build/source/utils/vlna/configure.ac b/Build/source/utils/vlna/configure.ac index a00c07c9dfe..750d233936d 100644 --- a/Build/source/utils/vlna/configure.ac +++ b/Build/source/utils/vlna/configure.ac @@ -1,14 +1,11 @@ dnl configure.ac -- Peter Breitenlohner <peb@mppmu.mpg.de> -- Public domain. -AC_PREREQ(2.62) +AC_PREREQ(2.60) AC_INIT([vlna], [1.3], [tex-live@tug.org]) AC_CONFIG_SRCDIR([vlna.w]) AM_INIT_AUTOMAKE([foreign no-define])dnl using automake -AM_MAINTAINER_MODE[]dnl maintainer mode only if requested -AC_DISABLE_OPTION_CHECKING[]dnl disable warning for unrecognized inherited options - # Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET @@ -19,15 +16,16 @@ AC_CHECK_PROGS([CTANGLE], [ctangle], [none]) AC_CHECK_PROGS([CWEAVE], [cweave], [none]) AC_CHECK_PROGS([CSPLAIN], [csplain], [none]) -if test x"$USE_MAINTAINER_MODE" = xyes; then +if test x"$enable_maintainer_mode" = xyes; then case :$CTANGLE:$CWEAVE:$CSPLAIN: in *:none:*) - AC_MSG_ERROR([Maintainer mode requires ctangle, cweave, and csplain in your PATH.]) + AC_MSG_WARN([Maintainer mode disabled -- requires ctangle, cweave, and csplain.]) + enable_maintainer_mode=no ;; esac fi -AM_CONDITIONAL([TETEX_BUILD], [test x"$enable_tetex_build" = xyes]) +AM_MAINTAINER_MODE[]dnl maintainer mode only if requested AC_CONFIG_FILES([Makefile]) AC_OUTPUT |