安装MysQL出现No curses/termcap library found错误的解决方法
时间:2014-11-23 14:37 来源:linux.it.net.cn 作者:IT
安装MysQL出现No curses/termcap library found错误的解决方法
编译MysQL时出现错误:
checking for tgetent in -ltermcap… no
checking for termcap functions library… configure: error: No curses/termcap library found
说明:curses/termcap 库没有安装,下载ncurses-5.6.tar.gz
安装:
复制代码代码如下:
wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.6.tar.gz
tar zxvf ncurses-5.6.tar.gz
cd ncurses-5.6
./configure –prefix=/usr –with-shared –without-debug
make
make install clean
重新编译安装Mysql。
(责任编辑:IT)
安装MysQL出现No curses/termcap library found错误的解决方法
编译MysQL时出现错误: 说明:curses/termcap 库没有安装,下载ncurses-5.6.tar.gz 安装:
复制代码代码如下:
wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.6.tar.gz tar zxvf ncurses-5.6.tar.gz cd ncurses-5.6 ./configure –prefix=/usr –with-shared –without-debug make make install clean 重新编译安装Mysql。 |