Fedora Core 9 安装qvfb

本文参考 zcg1041 http://blog.csdn.net/zcg1041/article/details/7287883 ,对其中的问题稍作修改。

在终端中执行:

tar zxvf qvfb-1.1.tar.gz

cd qvfb-1.1

./configure

报错:
checking for Qt... configure: error: Qt (>= Qt 3.0.3) (headers and libraries) not found. Please check your installation! For more details about this problem, look at the end of config.log.

出现的原因:
第一:linux发行版的制作没有一个统一的标准,指示linux的系统路径有可能不相同。
第二:由于linux发行版的推陈出新,早期的版本的库已经不再实用用当前较新的版本上了。因而丢弃了某些早期的库,即 lib*.so文件。
第三:无独有偶,qvfb 犯了上面的毛病。qt3 和 qt4之间存在了很大的差别。某些qt4程序不能方便的转换成qt3的程序而运行。当然了,早期的qt3程序,更不能运行在qt4库上。至此,qvfb 1.1是qt3的程序,它的运行需要qt3的库的支持,所以即便你的系统上安装了,最新的qt4,它也不能被正确安装运行。

由上可知,qvfb 1.1的安装运行,必须安装 qt3 的头文件和库。

查到/usr/lib/ 下有目录qt-3.3的目录 但是没有include的目录

 

解决办法:

终端执行:

yum remove qt3   #卸掉原来的qt3,重新安装qt3-devel 。

yum install qt3-devel.i386

然后使用下面的命令配置qvfb:

./configure --with-qt-includes=/usr/lib/qt-3.3/include --with-qt-libraries=/usr/lib/qt-3.3/lib --with-qt-dir=/usr/lib/qt-3.3

再执行:

make

make install

安装完成。

结束

你可能感兴趣的:(Linux)