各位大虾,为什么我在linux下装不上去gaim-1.5.0啊,小弟先谢谢各位大虾了

来源:百度知道 编辑:UC知道 时间:2024/09/21 19:06:56
在我解压后输入 ./configure --prefix=/usr/local/gaim后就出现下面的内容:
[root@localhost gaim-1.5.0]# ./configure --prefix=/usr/local/gaim
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for sed... /bin/sed
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
我本来是想用gaim1.5.0和openQ上QQ的!现在什么也不能做了!555555555555555
已经用cd gaim-1.5.0进入到目录下了!后用的是
./configure --prefix=/usr/local/gaim
的命令

no acceptable C compiler found in $PATH :在$PATH中没有可用的C编译器。

解决:安装C编译器,gaim一般需要gcc及相关库,可考虑把开发工具全部安装上,才好用于编译安装其它组件。

你../configure时,configure就会查找它的编译条件是否被满足,检查所需要的编译器及相关库,它执行时停在了这里no acceptable C compiler found in $PATH,没有继续执行,是因为找不到可用的C编译器。

gaim for linux 以及QQ插件的安装

(1) 下载文件

Gaim:到 http://gaim.sourceforge.net/ 可以下载到最新的 1.5.0 版的源代码形式的gaim。

OpenQ: 即 QQ Plugin for Gaim。可以到 http://openq.linuxsir.org 下载最新的 0.3.2 版的源代码形式的OpenQ。

(2) 安装Gaim

解压缩: tar -zxvf gaim-1.5.0.tar.gz
安装: cd gaim-1.5.0
configure
make && make install

(3) 安装OpenQ
tar zxvf openq-0.3.2.tar.gz
cd openq-0.3.2
下面这一步非常重要:
export PKG_CONFIG_PATH=/lib/pkgconfig
.