|
经常出现这样的问题:你很想试用的程序只有 tar.gz的源代码可用(没人提供 rpm 或者 Debian包),你只好下载回源代码,解压,然后手动编译,编译过程中你是否也曾遇到麻烦的问题呢?我把我碰到的问题和解决方案呈上,请大家补充。
编译过程中的错误提示:
1、checking for X... configure: error: Can't find X includes. Please check your installation and add the correct paths!
请安装xlibs-dev:#apt-get install xlibs-dev
2、checking for KDE... configure: error:
in the prefix, you've chosen, are no KDE headers installed. This will fail.
So, check this please and use another prefix!
请安装kdelibs4-dev:#apt-get intall kdelibs4-dev |
|