summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2013-05-06 00:26:29 -0400
committerPaul Smith <psmith@gnu.org>2013-05-06 00:26:29 -0400
commit4f2942b03e6634ca49f84e2999c4b30dcb66cdd7 (patch)
treec9c30c972226b44cdc8e95f8c1db958c4a1e4997 /configure.ac
parent31f3ffe8a1e9c24433441fd0f3353de02edfc7e1 (diff)
downloadmake-4f2942b03e6634ca49f84e2999c4b30dcb66cdd7.tar.gz
build: require Autoconf >= 2.62 and Automake >= 1.11.1
Older versions of those tools should be considered fully obsolete. Also, GNU make already requires Gettext >= 0.18.1, which has been released six months after Automake 1.11.1 and two years after Autoconf 2.62; so the new requirement shouldn't be problematic for people already bootstrapping GNU make from the Git repository. * configure.ac (AC_PREREQ): Require Autoconf 2.62 or later. (AM_INIT_AUTOMAKE): Require Automake 1.11.1 or later (1.11 had some serious bugs, and should not be used). Copyright-paperwork-exempt: yes Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 7b70f045..da2071fc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
# Process this file with autoconf to produce a configure script.
#
-# Copyright (C) 1993-2012 Free Software Foundation, Inc.
+# Copyright (C) 1993-2013 Free Software Foundation, Inc.
# This file is part of GNU Make.
#
# GNU Make is free software; you can redistribute it and/or modify it under
@@ -18,7 +18,7 @@
AC_INIT([GNU make],[3.82.90],[bug-make@gnu.org])
-AC_PREREQ([2.59])
+AC_PREREQ([2.62])
# Autoconf setup
AC_CONFIG_AUX_DIR([config])
@@ -26,7 +26,7 @@ AC_CONFIG_SRCDIR([vpath.c])
AC_CONFIG_HEADERS([config.h])
# Automake setup
-AM_INIT_AUTOMAKE([1.9])
+AM_INIT_AUTOMAKE([1.11.1])
# Checks for programs.
AC_PROG_CC