diff options
author | Hans Ulrich Niedermann <hun@n-dimensional.de> | 2007-11-06 15:27:47 +0100 |
---|---|---|
committer | Hans Ulrich Niedermann <hun@n-dimensional.de> | 2007-11-06 15:27:47 +0100 |
commit | 9721e2d12e61e20d0f809256d5af3a23f0ce72f5 (patch) | |
tree | 3f9533bc0f57347e95e97e20f492092e07b6303d /configure.ac | |
parent | c2cc88f4c5ee68f0f85ae4ce5c505f55e70dde06 (diff) | |
download | ndim-git-utils-9721e2d12e61e20d0f809256d5af3a23f0ce72f5.tar.gz ndim-git-utils-9721e2d12e61e20d0f809256d5af3a23f0ce72f5.tar.xz ndim-git-utils-9721e2d12e61e20d0f809256d5af3a23f0ce72f5.zip |
Refactoring, 1.8.1
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 005365e..6482d96 100644 --- a/configure.ac +++ b/configure.ac @@ -1,17 +1,27 @@ +######################################################################## + AC_PREREQ(2.61) AC_INIT([ndims git utilities], - [1.8], + [1.8.1], [hun@n-dimensional.de], [ndim-git-utils]) -AC_CONFIG_SRCDIR([git-amb/git-amb.in]) AC_CONFIG_AUX_DIR([auto-aux]) +dnl AC_CONFIG_HEADER([include/config.h]) +AC_CONFIG_SRCDIR([git-amb/git-amb.in]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([-Wall foreign 1.10 dist-bzip2 readme-alpha std-options]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign 1.10 dist-bzip2 + check-news readme-alpha std-options]) + +######################################################################## m4_pattern_forbid([NDIM_DETECT_MAN2TXT])dnl NDIM_DETECT_MAN2TXT()dnl +######################################################################## + AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([git-amb/git-amb.man]) AC_CONFIG_FILES([git-amb/git-amb]) AC_OUTPUT + +######################################################################## |