|
首先我下载了mysql-4.1.16.tar.gz
在刚刚装好的debian linux(都是一路默认安装的)下tar zxvf
然后 ./configure --prefix=/usr/local/mysql --without-server
出现如下错误:
checking for termcap functions library... configure: error: No curses/termcap library found
然后努力上google搜索原因:原因是没有安装curses库。
于是:apt-cache search curses
最后干脆把所有带有curses的都装了。比如:libncurses5 libncursesw5
输入:apt-get install nsurses-base
显示我的已经是最新的,没有必要更新。
再输入:apt-get install termcap-compat
也显示我的已经是最新的,没有必要更新。
运行仍然出现checking for termcap functions library... configure: error: No curses/termcap library found[/lolor]
然后在网上找到这样的解决办法:
./configure --with-named-curses-libs=/lib/libcurses.so.5 --prefix=/usr/local/mysql --without-server
注:我在lib目录里发现了libcurses.so.5和libcurses.so.5.4 这2个文件。
果然能够configure过去了
但是make的时候又出错了。
error:lib/libncurses.so.5 No such file or directory
小弟我实在是没有办法了,请教各位高手,debian如何安装curses或者termcap。
或者有其他的办法解决这个问题。我将不胜感激!!!!!!!!! |
|