Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Centos 6.4,when configure Emacs

In Centos 6.4,when configure Emacs,it shows:

configure: error: The required function `tputs' was not found in any library. The following libraries were tried (in order): libtinfo, libncurses, libterminfo, libtermcap, libcurses Please try installing whichever of these libraries is most appropriate for your system, together with its header files. For example, a libncurses-dev(el) or similar package.

How to fix it,what's the problem in it.

like image 861
user2905821 Avatar asked Oct 22 '13 06:10

user2905821


2 Answers

sudo yum install ncurses-devel

then ./configure again

like image 186
Bill Avatar answered Oct 03 '22 16:10

Bill


Try to install libncurses-dev with bash apt-get install libncurses-dev

like image 35
Developer Avatar answered Oct 03 '22 16:10

Developer