In Centos 6.4,when configure Emacs
Asked Answered
B

3

10

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.

Biffin answered 22/10, 2013 at 6:27 Comment(0)
E
19
sudo yum install ncurses-devel

then ./configure again

Ecru answered 27/10, 2013 at 6:13 Comment(0)
P
9

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

Pardo answered 21/10, 2015 at 2:8 Comment(0)
S
0

I'm on a Debian Wheezy derived distribution (CrunchBang)
Trying to install Emacs 24.5.1
Had to install libncurses5-dev, then run ./configure

$ sudo apt-get install ncurses-devel
...
E: Unable to locate package ncurses-devel
$ sudo apt-get install libncurses5-dev
Sanguine answered 17/6, 2015 at 10:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.