about summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2012-09-11 14:30:49 +0200
committerAlexander Barton <alex@barton.de>2012-09-11 14:30:49 +0200
commit67e882d4bbda97fb65ed4d58ae44e6c79d4cb708 (patch)
tree8bb5c3b63d39bdf2f603b8425d3513d73aa32a44 /configure.in
parent25c216cbdf0a5db739bdf0551db16a510e8ac4a1 (diff)
downloadngircd-67e882d4bbda97fb65ed4d58ae44e6c79d4cb708.tar.gz
ngircd-67e882d4bbda97fb65ed4d58ae44e6c79d4cb708.zip
configure.in: require autoconf 2.67 and automake 1.11
And use newer features such as bug reporting address and project URL.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in13
1 files changed, 8 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index 7a15b2ba..0f0cac02 100644
--- a/configure.in
+++ b/configure.in
@@ -13,12 +13,15 @@ define(VERSION_ID,esyscmd(git describe|sed -e 's/rel-//g'|sed -e 's/-/~/'|tr -d
 
 # -- Initialisation --
 
-AC_PREREQ(2.50)
-AC_INIT(ngircd, VERSION_ID)
-AC_CONFIG_SRCDIR(src/ngircd/ngircd.c)
+AC_PREREQ([2.67])
+AC_INIT([ngIRCd], VERSION_ID,
+	[ngircd-ml@ngircd.barton.de], [ngircd], [http://ngircd.barton.de/])
+
+AC_CONFIG_SRCDIR([src/ngircd/ngircd.c])
+AC_CONFIG_HEADER([src/config.h])
 AC_CANONICAL_TARGET
-AM_INIT_AUTOMAKE(1.6)
-AC_CONFIG_HEADER(src/config.h)
+
+AM_INIT_AUTOMAKE([1.11])
 
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])