I'm trying to compile vim8.2 on CentOS 8.4.
When executing ./configure --with-features=huge --enable-multibyte --enable-python3interp --enable-perlinterp --enable-luainterp --enable-cscope --enable-fail-if-missing --with-python3-command=/usr/bin/python3.8 --with-tlib=ncurses
, it renders the error:
checking for linking with ncurses library... OK
checking for tgetent()... configure: error: NOT FOUND!
You need to install a terminal library; for example ncurses.
Or specify the name of the library with --with-tlib.
I've installed ncurses with its respective libraries, ncurses ncurses-devel ncurses-libs ncurses-compat-libs ncurses-c++-libs
.
The question lies where to find the ncurses libraries, so that it can be pointed to
--with-tlib
. Thanks in advance.