当前位置: 技术问答>linux和unix
安装 proftpd-1.3.0时 ./configure命令不成功
来源: 互联网 发布时间:2016-06-28
本文导语: 本帖最后由 CreateLove 于 2009-08-31 23:40:42 编辑 下载了安装包proftpd-1.3.0.tar.gz,解压,进入解压后的目录后,准备按照./configure; make; make install的步骤编译安装,但是在运行./configure后,倒数第二行报错,执行m...
急需安装此软件, 请各位帮帮忙。谢谢!
我使用的系统是Ubuntu 9.04,内核2.6.30
执行命令的输出如下:
root@lan-desktop:/tmp/proftpd-1.3.0# ./configure
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 gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking how to run the C preprocessor... /lib/cpp
configure: error: C preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.
root@lan-desktop:/tmp/proftpd-1.3.0# make
make: *** 没有指明目标并且找不到 makefile。 停止。
|
configure: error: C preprocessor "/lib/cpp" fails sanity check
从这句判断 我怀疑你的系统缺少c++支持
安装如下3个包就可以了
glibc-headers libstdc++-devel gcc-c++
不知道你的系统是否支持yum 如果支持的话执行下面的命令就可以了
yum -y install glibc-headers libstdc++-devel gcc-c++
从这句判断 我怀疑你的系统缺少c++支持
安装如下3个包就可以了
glibc-headers libstdc++-devel gcc-c++
不知道你的系统是否支持yum 如果支持的话执行下面的命令就可以了
yum -y install glibc-headers libstdc++-devel gcc-c++
|
See `config.log' for more details.