From b2d95b11f531516c6abbc5924ae828ae0337cac9 Mon Sep 17 00:00:00 2001 From: Kalle Olavi Niemitalo Date: Mon, 2 Jul 2007 20:19:33 +0300 Subject: [PATCH] Bug 936: Require Autoconf 2.61 or later. --- configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 58064449..9f629fb6 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,9 @@ dnl Process this file with autoconf to produce a configure script. -AC_PREREQ(2.13) +dnl Autoconf 2.13 generates an incomplete config.h.in; see ELinks bug 936. +dnl Autoconf 2.61 is known to be compatible with ELinks, so that's what we +dnl specify here. +AC_PREREQ(2.61) AC_INIT(src/main/main.c) AC_CONFIG_AUX_DIR(config)