mysql: No curses/termcap library found解決方案

來源:互聯網
上載者:User

編譯MysQL時出現了以下錯誤:

 代碼如下 複製代碼

checking for tgetent in -ltermcap… no
checking for termcap functions library… configure: error: No curses/termcap library found


所安裝mysql版本:5.1.30,在./configure後,make時出現以下錯誤:

make: *** No targets specified and no makefile found.

在網上找到相關資料,確認是./configure出了問題,於是回頭查看,果然發現問題,最後幾行出了錯。完整錯誤資訊如下:

 代碼如下 複製代碼

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

錯誤原因分析:

說明 curses/termcap 庫沒有安裝,下載ncurses-5.6.tar.gz,安裝:

解決辦法1

 代碼如下 複製代碼

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

解決辦法2

下載安裝相應軟體包

一、如果你的系統是RedHat系列,比如CentOS:

 代碼如下 複製代碼

yum list | grep ncurses

yum -y install ncurses-devel

二、如果你的系統是Ubuntu或Debian:

 代碼如下 複製代碼

apt-cache search ncurses

apt-get install libncurses5-dev

待安裝completed!之後,再./configure,順利通過,然後make && make install,成功安裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.