# HG changeset patch # User Bram Moolenaar # Date 1618999205 -7200 # Node ID 09bfa6e3859c8ac38e0eeeb32f6b9d62e29c0b8c # Parent b5fc06b7a412c13e09f0972e049916a01587500a patch 8.2.2794: Linux users don't know how to get ncurses Commit: https://github.com/vim/vim/commit/16678eb50f7fcb7138600bd0364edb2c9def8cb8 Author: Bram Moolenaar Date: Wed Apr 21 11:57:59 2021 +0200 patch 8.2.2794: Linux users don't know how to get ncurses Problem: Linux users don't know how to get ncurses. Solution: Add the name of the package. (closes https://github.com/vim/vim/issues/8132) diff --git a/src/auto/configure b/src/auto/configure --- a/src/auto/configure +++ b/src/auto/configure @@ -12071,6 +12071,7 @@ if ac_fn_c_try_link "$LINENO"; then : else as_fn_error $? "NOT FOUND! You need to install a terminal library; for example ncurses. + On Linux that would be the libncurses-dev package. Or specify the name of the library with --with-tlib." "$LINENO" 5 fi rm -f core conftest.err conftest.$ac_objext \ diff --git a/src/configure.ac b/src/configure.ac --- a/src/configure.ac +++ b/src/configure.ac @@ -3482,6 +3482,7 @@ if test "x$olibs" = "x$LIBS"; then AC_MSG_RESULT(yes), AC_MSG_ERROR([NOT FOUND! You need to install a terminal library; for example ncurses. + On Linux that would be the libncurses-dev package. Or specify the name of the library with --with-tlib.])) fi diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2794, +/**/ 2793, /**/ 2792,