Add an AC_PREREQ so we don't just fail with an obscure error message if
authorPeter Maydell <pmaydell@chiark.greenend.org.uk>
Sun, 6 Nov 2005 00:23:48 +0000 (00:23 +0000)
committerPeter Maydell <pmaydell@chiark.greenend.org.uk>
Sun, 6 Nov 2005 00:23:48 +0000 (00:23 +0000)
using old 2.13 era autoconf (or an autoconf-version-guessing wrapper).

ChangeLog
configure.in

index 3b17470..08950e2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-11-06  Peter Maydell  <pmaydell@chiark.greenend.org.uk>
+
+       * 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  <okiddle@yahoo.co.uk>
 
        * Debian Bug# 320069: Nick Rusnov: uip/popsbr.c: fail when
index 1b1df6b..ea664e9 100644 (file)
@@ -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)