summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac16
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
+
+########################################################################