nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit c04a8ce654d8e102e63f1bf0f4d394fc1e3414f4
parent 83a841cd06ac09f49b835ec752da73d137800cbd
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Tue, 21 Feb 2017 17:04:33 -0500

configure: require autoconf-2.69/automake-1.14

The autoconf-2.69 release was made in Apr 2012.
The automake-1.14 release was made in Jun 2013.

Update the requirements so we know we can rely on macros/features
available in those versions.

Diffstat:
Mconfigure.ac | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -19,12 +19,12 @@ AC_INIT([GNU nano], [2.7.5], [nano-devel@gnu.org], [nano]) AC_CONFIG_SRCDIR([src/nano.c]) AC_CANONICAL_HOST -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([1.14]) AC_CONFIG_HEADERS([config.h]) dnl Make sure the ONCE macros are available. -AC_PREREQ(2.61) +AC_PREREQ([2.69]) dnl Checks for programs.