0

一个星期以来,我一直在努力尝试在我的 Kubuntu 12-10 机器上从源代码构建qt vim 。

我正在使用的构建命令是:

./configure --prefix=/usr/ --with-features=huge --with-vim-name=qvim --enable-gui=qt

这给了我这个错误:

checking for tgetent in -ltinfo... no checking for tgetent in -lncurses... no checking for tgetent in -ltermlib... no checking for tgetent in -ltermcap... no checking for tgetent in -lcurses... no no terminal library found 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.

经过多次谷歌搜索,我发现的唯一解决方案是安装 libncurses5-dev 和 ncurses5-dev,我这样做了。我还在 apt repo 中安装了每个通用的 ncurses 开发库,只是为了确保。唉,它产生了同样的错误。

安装了上述所有库后,我尝试了带有 tlib 选项的命令:

./configure --prefix=/usr/ --with-features=huge --with-vim-name=qvim --enable-gui=qt --with-tlib=ncurses

这产生了这个错误:

checking --with-tlib argument... ncurses checking for linking with ncurses library... configure: error: FAILED

我不确定我做错了什么。任何帮助将不胜感激。提前致谢!

4

1 回答 1

2

尝试apt-get build-dep vim安装所有构建依赖项

于 2013-02-15T07:48:52.467 回答