From c4873ba2436cd547f3e5812f7acbe096eb69d3b7 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. [ From commit b2d95b11f531516c6abbc5924ae828ae0337cac9 in ELinks 0.12.GIT. --KON ] --- configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 5608522a..b340cd1c 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) -- 2.11.4.GIT