编译asterisk时报*** termcap support not found (on modern syst

转自:http://blog.sina.com.cn/s/blog_7c95e5850101dkzj.html


编译asterisk时报

configure: error: *** termcap support not found (on modern systems, this typically means the ncurses development package is missing)
编译asterisk的./configure时报错:
处理如下:
1.必须确定LINUX是否具有:GNU库;
2.rpm -qv bison
  rpm -qv ncurses
  rpm -qv ncurses-devel
   rpm -qv zlib
  rpm -qv openssl
3.安装相关的包.

yum -y install bison
yum -y install bison-devel
yum -y install ncurses
yum -y install ncurses-devel
yum -y install zlib
yum -y install zlib-devel
yum -y install openssl
yum -y install openssl-devel
yum -y install gnutls-devel
yum -y install gcc
yum -y install gcc-c++


你可能感兴趣的:(linux,error,package,support)