# HG changeset patch # User Christian Brabandt # Date 1525956306 -7200 # Node ID fc2f175e8169188bd2d39682b2da4dd1db082f72 # Parent 335eb554590924cb32e14f081a3d774ce4c263ea patch 8.0.1808: can't build without TGETENT commit https://github.com/vim/vim/commit/9289df5ca9546bda0e0046a45ceb66c6bb7a838f Author: Bram Moolenaar Date: Thu May 10 14:40:57 2018 +0200 patch 8.0.1808: can't build without TGETENT Problem: Can't build without TGETENT. Solution: Add #ifdef diff --git a/src/term.c b/src/term.c --- a/src/term.c +++ b/src/term.c @@ -1544,6 +1544,7 @@ static char *(key_names[]) = }; #endif +#ifdef HAVE_TGETENT static void get_term_entries(int *height, int *width) { @@ -1642,6 +1643,7 @@ get_term_entries(int *height, int *width PC = *p; # endif } +#endif static void report_term_error(char_u *error_msg, char_u *term) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1808, +/**/ 1807, /**/ 1806,