У меня проблема с компиляцией vim. Я продолжаю получать отсутствующую ошибку tlib ... но у меня установлена libncurses5.
$ ./configure --prefix=$HOME/opt --enable-multibyte --with-tlib=ncurses --enable-pythoninterp --enable-rubyinterp --with-features=huge
# ... bunch of other checks ...
checking --with-tlib argument... ncurses
checking for linking with ncurses library... configure: error: FAILED
$ sudo dpkg -l | grep ncurse
ii lib32ncurses5 5.9-6 shared libraries for terminal handling (32-bit)
ii libncurses5:amd64 5.9-6 shared libraries for terminal handling
ii libncursesw5:amd64 5.9-6 shared libraries for terminal handling (wide character support)
ii ncurses-base 5.9-6 basic terminal type definitions
ii ncurses-bin 5.9-6 terminal-related programs and man pages
$ sudo apt-get install libncurses5-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libncurses5-dev : Depends: libncurses5 (= 5.9-4) but 5.9-6 is to be installed
Depends: libtinfo-dev (= 5.9-4) but it is not going to be installed
Depends: ncurses-bin (= 5.9-4) but 5.9-6 is to be installed
E: Broken packages
Может кто-нибудь посоветовать мне, как решить эту проблему? Все, что я хочу сделать, это скомпилировать VIM с поддержкой Python и Perl.
