- 积分
- 117977
- 威望
-
- 金钱
-
- 注册时间
- 2009-4-24
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
发表于 2015-7-6 09:07:40
|
显示全部楼层
-- Could NOT find Curses (missing: CURSES_LIBRARY CURSES_INCLUDE_PATH)
CMake Error at cmake/readline.cmake:83 (MESSAGE):
Curses library not found. Please install appropriate package,
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:118 (FIND_CURSES)
cmake/readline.cmake:214 (MYSQL_USE_BUNDLED_READLINE)
CMakeLists.txt:354 (MYSQL_CHECK_READLINE)
-- Configuring incomplete, errors occurred!
安装ncurses-devel时报错没安装上
Resolving Dependencies
--> Running transaction check
---> Package ncurses-devel.i686 0:5.7-3.20090208.el6 will be installed
--> Processing Dependency: ncurses-libs = 5.7-3.20090208.el6 for package: ncurses-devel-5.7-3.20090208.el6.i686
--> Finished Dependency Resolution
Error: Package: ncurses-devel-5.7-3.20090208.el6.i686 (base)
Requires: ncurses-libs = 5.7-3.20090208.el6
Installed: ncurses-libs-5.7-4.20090207.el6.i686 (@fasttrack)
ncurses-libs = 5.7-4.20090207.el6
Available: ncurses-libs-5.7-3.20090208.el6.i686 (base)
ncurses-libs = 5.7-3.20090208.el6
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
你可能是开启了fasttrack的源,返回安装了fasttrack的高版本的依赖造成的
编辑 /etc/yum.repos.d/CentOS-fasttrack.repo 把Enabled=1设置为Enabled=0 把fasttrack禁用试试
yum clean all
rpm --rebuilddb
然后再手动安装试试 |
|