configure.in: require autoconf 2.67 and automake 1.11

And use newer features such as bug reporting address and project URL.
This commit is contained in:
Alexander Barton 2012-09-11 14:30:49 +02:00
parent 25c216cbdf
commit 67e882d4bb
1 changed files with 8 additions and 5 deletions

View File

@ -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])])