From: Peter Maydell Date: Sun, 6 Nov 2005 00:23:48 +0000 (+0000) Subject: Add an AC_PREREQ so we don't just fail with an obscure error message if X-Git-Tag: RELEASE_1_2~29 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=10a00ac1c54a1475d341f82dc479bf1801cac92f Add an AC_PREREQ so we don't just fail with an obscure error message if using old 2.13 era autoconf (or an autoconf-version-guessing wrapper). --- diff --git a/ChangeLog b/ChangeLog index 3b17470..08950e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-11-06 Peter Maydell + + * configure.in: add an AC_PREREQ() so autoconf 2.13 gives a helpful + error message and the Debian autoconf-version-guessing wrapper + doesn't guess wrongly. + 2005-11-02 Oliver Kiddle * Debian Bug# 320069: Nick Rusnov: uip/popsbr.c: fail when diff --git a/configure.in b/configure.in index 1b1df6b..ea664e9 100644 --- a/configure.in +++ b/configure.in @@ -4,6 +4,12 @@ dnl dnl $Id$ dnl +dnl 2.13 definitely chokes; 2.53 is the earliest version I've tested. +dnl 2.50 is the major breakpoint between the old autoconf and the new, +dnl so require that. If there are bug reports about 2.50-2.52 not working +dnl we can always move this up a little. +AC_PREREQ(2.50) + AC_INIT(h/nmh.h) AC_CONFIG_HEADER(config.h)