checking for termcap functions library... configure: error: No curses/termcap library found

简介:

源码编译mysql-5.1.17 软件,./configure的时候报错:

1
2
3
4
5
6
checking  for  tgetent  in  -lncursesw... no
checking  for  tgetent  in  -lncurses... no
checking  for  tgetent  in  -lcurses... no
checking  for  tgetent  in  -ltermcap... no
checking  for  tgetent  in  -ltinfo... no
checking  for  termcap functions library... configure: error: No curses /termcap  library found

解决办法:

下载安装相应软件包

一、如果你的系统是RedHat系列:

1
2
3
yum list| grep  ncurses
yum -y  install  ncurses-devel
yum  install  ncurses-devel

 

二、如果你的系统是UbuntuDebian

1
2
apt-cache search ncurses
apt-get  install  libncurses5-dev


 

待安装completed!之后,再./configure,顺利通过,然后make && make install,成功安装,一切OK~~~










本文转自 xinsir999 51CTO博客,原文链接:http://blog.51cto.com/xinsir/1746785,如需转载请自行联系原作者
目录
相关文章
|
Ubuntu Unix Linux
成功解决ERROR: Unable to find the development tool `cc` in your path; please make sure that you have the
成功解决ERROR: Unable to find the development tool `cc` in your path; please make sure that you have the
成功解决ERROR: Unable to find the development tool `cc` in your path; please make sure that you have the
|
Python
ld: library not found for -lssl
ld: library not found for -lssl
56 0
MAC编译lame ld: symbol(s) not found for architecture x86_64/_lame_init_old“, referenced from
MAC编译lame ld: symbol(s) not found for architecture x86_64/_lame_init_old“, referenced from
196 0
configure: error: Library requirements (libpcre >= 7.8) not met
configure: error: Library requirements (libpcre >= 7.8) not met
98 0
|
Ruby
ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /usr/bin directory.错误解决办法
ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /usr/bin directory.错误解决办法
2500 0
|
Ubuntu Unix Linux
成功解决ERROR: Unable to find the development tool `make` in your path; please make sure that you have t
成功解决ERROR: Unable to find the development tool `make` in your path; please make sure that you have t
成功解决ERROR: Unable to find the development tool `make` in your path; please make sure that you have t

热门文章

最新文章