Linux MySQL源码安装缺乏ncurses-devel包

在Red Hat Enterprise Linux Server release 5.7 上用源码安装MySQL-5.6.23时,遇到了" remove CMakeCache.txt and rerun cmake.On Debian/Ubuntu, package name is libncurses5-dev, on Redhat and derivates it is ncurses-devel."错误,以下所示 mysql

[root@DB-Server mysql-5.6.23]# cmake ./ -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/usr/local/mysql/data sql

clip_image001

......................... app

-- Check size of wctype_t es5

-- Check size of wctype_t - done spa

-- Check size of wint_t code

-- Check size of wint_t - done blog

-- Could NOT find Curses (missing: CURSES_LIBRARY CURSES_INCLUDE_PATH) ip

CMake Error at cmake/readline.cmake:85 (MESSAGE): ci

Curses library not found. Please install appropriate package, rem

remove CMakeCache.txt and rerun cmake.On Debian/Ubuntu, package name is libncurses5-dev, on Redhat and derivates it is ncurses-devel.

Call Stack (most recent call first):

cmake/readline.cmake:128 (FIND_CURSES)

cmake/readline.cmake:202 (MYSQL_USE_BUNDLED_EDITLINE)

CMakeLists.txt:409 (MYSQL_CHECK_EDITLINE)

 

按照错误提示,Debian/Ubuntu下须要安装libncurses5-dev;Redhat下须要安装ncurses-devel ,检查是否安装了ncurses包,以下所示,已经安装了ncurses-5.5-24.20060715,可是缺乏ncurses-devel包。

[root@DB-Server Server]# rpm -qa | grep ncurses
ncurses-5.5-24.20060715
ncurses-5.5-24.20060715
[root@DB-Server Server]# ls ncurses*
ncurses-5.5-24.20060715.i386.rpm    ncurses-devel-5.5-24.20060715.i386.rpm
ncurses-5.5-24.20060715.x86_64.rpm  ncurses-devel-5.5-24.20060715.x86_64.rpm
[root@DB-Server Server]# rpm -ivh ncurses-devel-5.5-24.20060715.x86_64.rpm 
warning: ncurses-devel-5.5-24.20060715.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
   1:ncurses-devel          ########################################### [100%]
[root@DB-Server Server]# 

clip_image002

安装了ncurses-devel包后,删除CMakeCache.txt,而后从新编译,编译成功,问题解决!

[root@DB-Server mysql-5.6.23]# rm CMakeCache.txt 
rm: remove regular file `CMakeCache.txt'? yes
[root@DB-Server mysql-5.6.23]# cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql  -DMYSQL_DATADIR=/usr/local/mysql/data -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DEXTRA_CHARSETS=all -DENABLED_LOCAL_INFILE=1