mirror of git://git.sv.gnu.org/nano.git
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.
This commit is contained in:
parent
3809c67bb2
commit
ec177c84b3
|
@ -12,9 +12,9 @@ To successfully compile GNU nano from git, you'll need the following:
|
||||||
|
|
||||||
autoconf (version >= 2.69)
|
autoconf (version >= 2.69)
|
||||||
automake (version >= 1.14)
|
automake (version >= 1.14)
|
||||||
autopoint (version >= 0.18.3)
|
autopoint (version >= 0.20)
|
||||||
gcc (version >= 5.0)
|
gcc (version >= 5.0)
|
||||||
gettext (version >= 0.18.3)
|
gettext (version >= 0.20)
|
||||||
git (version >= 2.7.4)
|
git (version >= 2.7.4)
|
||||||
groff (version >= 1.12)
|
groff (version >= 1.12)
|
||||||
make (any version)
|
make (any version)
|
||||||
|
|
|
@ -48,7 +48,7 @@ PKG_PROG_PKG_CONFIG
|
||||||
|
|
||||||
dnl Internationalization macros.
|
dnl Internationalization macros.
|
||||||
|
|
||||||
AM_GNU_GETTEXT_VERSION([0.18.3])
|
AM_GNU_GETTEXT_VERSION([0.20])
|
||||||
AM_GNU_GETTEXT([external], [need-ngettext])
|
AM_GNU_GETTEXT([external], [need-ngettext])
|
||||||
AM_CONDITIONAL(USE_NLS, test x$USE_NLS = xyes)
|
AM_CONDITIONAL(USE_NLS, test x$USE_NLS = xyes)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue