编译mysql ,出现 error: No curses/termcap library found

来源:互联网 发布:linux系统api有哪些 编辑:程序博客网 时间:2024/05/19 02:17

本文转载自博客:http://blog.csdn.net/zccst/article/details/4493074


-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------



出现错误:

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


原因:
缺少ncurses安装包
 
解决办法:
下载安装相应软件包
一、如果你的系统是RedHat系列:


yum list|grep ncurses


yum -y install ncurses-devel


yum install ncurses-devel
 
二、如果你的系统是Ubuntu或Debian:


apt-cache search ncurses


apt-get install libncurses5-dev



===============================================================================

然后再次./configure 

0 0