Jquery中文网 www.jquerycn.cn
Jquery中文网 >  数据库  >  mysql  >  正文 安装MysQL出现No curses/termcap library found错误的解决方法

安装MysQL出现No curses/termcap library found错误的解决方法

发布时间:2014-07-20   编辑:www.jquerycn.cn
安装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。

您可能感兴趣的文章:
安装MysQL出现No curses/termcap library found错误的解决方法
安装MYSQL-PYTHON包报错mysql_config not found解决办法
linux下mysql 5.5.8 源码编译安装
fedroa中编译安装mysql5.5的实例参考
WDCP面板系统安装mysqli扩展的方法
libmysqlclient.so.15()(64bit) is needed by perl-DBD-MySQL-3.0007-2.el5.x86_64的解决
Starting MySQL...The server quit without updating PID file的解决方法
Centos安装libxml2 'bin/rm: cannot remove libtoolT'...的解决方法
MySQL启动错误Starting MySQL.Manager of pid-file quit without updating file.[FAILED]
CentOS 6.2 yum 安装MySQL初始化警告错误的解决方法

[关闭]