summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAssaf Gordon <assafgordon@gmail.com>2018-12-05 13:57:38 -0700
committerAssaf Gordon <assafgordon@gmail.com>2018-12-05 21:07:50 -0700
commit51eb713854fb54af71459015e00d32cf94360502 (patch)
tree825088f0abb28fa7f46632e3ca1d621a2c2da878
parentb307652592ceb3263c558cb9b333f73bea5af8ed (diff)
downloadsed-51eb713854fb54af71459015e00d32cf94360502.tar.gz
build: update autoconf version requirements
Require version 2.64 to bootstrap. This is already required in practice by bootstrap.conf, but was not updated in configure.ac. After recent gnulib update, gnulib-tool would complain: $ ./gnulib/gnulib-tool ./gnulib/gnulib-tool: *** minimum supported autoconf version is 2.63.\ Try adding AC_PREREQ([2.63]) to your configure.ac. ./gnulib/gnulib-tool: *** Stop. Hence this update. * configure.ac: Require autoconf version 2.64 or later.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4c57d68..960efb5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@ AC_INIT([GNU sed],
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_SRCDIR([sed/sed.c])
AM_CONFIG_HEADER(config.h:config_h.in)
-AC_PREREQ(2.62)
+AC_PREREQ([2.64])
AM_INIT_AUTOMAKE([1.11.1 no-dist-gzip dist-xz color-tests parallel-tests
subdir-objects])
AM_SILENT_RULES([yes]) # make --enable-silent-rules the default.