From 90e5d8e49c669c8ff7b6f304151b94638d8828e6 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Fri, 17 Jul 2020 15:15:55 -0400 Subject: [PATCH] Cleanup: Bump autoconf required version to 2.69 We already depend on automake 1.12 released in 2012, set the minimum autoconf version to 2.69 which was released on the same year. Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers Change-Id: Ib3c8bb5fccca3eacb80e78f361bc1b3fddbe00e1 --- README.md | 4 ++-- configure.ac | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 51ca20b8..a5f43c4f 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ portability. Here are some things you should have on your system in order to compile the Git repository tree: - [GNU Autotools](http://www.gnu.org/software/autoconf/) - (**Automake >= 1.10**, **Autoconf >= 2.50**, - **Autoheader >= 2.50**; + (**Automake >= 1.12**, **Autoconf >= 2.69**, + **Autoheader >= 2.69**; make sure your system-wide `automake` points to a recent version!) - **[GNU Libtool](https://www.gnu.org/software/libtool/) >= 2.2** diff --git a/configure.ac b/configure.ac index a89b72e3..586affc9 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ m4_define([V_DESC], [[Description TBD]]) m4_define([V_STRING], [V_MAJOR.V_MINOR.V_PATCH]) m4_ifdef([V_EXTRA], [m4_append([V_STRING], [-V_EXTRA])]) -AC_PREREQ(2.59) +AC_PREREQ([2.69]) AC_INIT([lttng-ust], V_STRING, [mathieu dot desnoyers at efficios dot com], [], [https://lttng.org]) dnl Substitute minor/major/patchlevel version numbers -- 2.34.1