diff options
| author | Alexander Barton <alex@barton.de> | 2012-09-24 10:22:21 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-09-24 10:22:21 +0200 |
| commit | baed0618ed9e1a9140624205035d991d7852ee6b (patch) | |
| tree | a6b7aa2fa85df53f2895826e35cb4285f0d653ab | |
| parent | e3e181f4b3eae0e552632bce19bdff990196938f (diff) | |
| download | ngircd-baed0618ed9e1a9140624205035d991d7852ee6b.tar.gz ngircd-baed0618ed9e1a9140624205035d991d7852ee6b.zip | |
Loose GNU autoconf / automake requirements a bit
Now ngIRCd requires at least GNU autoconf 2.61 and automake 1.10, the
requirements of commit 67e882d4 have been too restrictive:
19.2 67e882d4 now
---------- --------- --------- ---------
autoconf >=2.50 >=2.67 >=2.61
automake >=1.6 >=1.11 >=1.10
The tools required now are supported by Debian GNU/Linux 4.0 "Etch",
RedHat Enterprise Linux 5, and Mac OS X 10.6.x for example.
I read the changelogs of autoconf and automake, and I think ther's nothing
that prevents it from working with these older versions; and we don't want
to force users to upgrade without real benefits.
Please note: the recommended versions are still autoconf 1.11.x and the
most recent autoconf release that works with automake 1.11.x!
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 949a383a..34c76e16 100644 --- a/configure.in +++ b/configure.in @@ -13,7 +13,7 @@ define(VERSION_ID,esyscmd(git describe|sed -e 's/rel-//g'|sed -e 's/-/~/'|tr -d # -- Initialisation -- -AC_PREREQ([2.67]) +AC_PREREQ([2.61]) AC_INIT([ngIRCd], VERSION_ID, [ngircd-ml@ngircd.barton.de], [ngircd], [http://ngircd.barton.de/]) @@ -21,7 +21,7 @@ AC_CONFIG_SRCDIR([src/ngircd/ngircd.c]) AC_CONFIG_HEADER([src/config.h]) AC_CANONICAL_HOST -AM_INIT_AUTOMAKE([1.11]) +AM_INIT_AUTOMAKE([1.10]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |