nano

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

commit ec177c84b3c074de1f1e6a0c86ec56add426f16b
parent 3809c67bb2ada5fa5d5067febc349165a037f48f
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Mon, 17 Jun 2024 09:45:23 +0200

build: require version 0.20 of gettext for building nano from git

Gettext-0.20 is the first version where its `autopoint` does not
overwrite the newer 'extern-inline.m4' from gnulib.

Version 0.20 is five years old, so most users will be on a distro
that includes that version of gettext or a newer one.

Diffstat:
MREADME.hacking | 4++--
Mconfigure.ac | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.hacking b/README.hacking @@ -12,9 +12,9 @@ To successfully compile GNU nano from git, you'll need the following: autoconf (version >= 2.69) automake (version >= 1.14) - autopoint (version >= 0.18.3) + autopoint (version >= 0.20) gcc (version >= 5.0) - gettext (version >= 0.18.3) + gettext (version >= 0.20) git (version >= 2.7.4) groff (version >= 1.12) make (any version) diff --git a/configure.ac b/configure.ac @@ -48,7 +48,7 @@ PKG_PROG_PKG_CONFIG dnl Internationalization macros. -AM_GNU_GETTEXT_VERSION([0.18.3]) +AM_GNU_GETTEXT_VERSION([0.20]) AM_GNU_GETTEXT([external], [need-ngettext]) AM_CONDITIONAL(USE_NLS, test x$USE_NLS = xyes)