linux 下 larbin 编译不通过

Ubuntu11.04+larbin编译出现错误如下:

root@zhao:/home/torres/workspace/larbin-2.6.3# ./configure make
checking whether you requested dynamic linking... yes, by default
checking for gcc... gcc
checking whether the C compiler (gcc  ) works... yes
checking whether the C compiler (gcc  ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for ranlib... ranlib
checking for a BSD compatible install... /usr/bin/install -c
checking for poll... yes
checking for socket... yes
checking for inet_ntoa... yes
checking for tsearch... yes
checking for INADDR_LOOPBACK... found
checking for inet_aton... yes
checking inlines... yes
checking __attribute__((,,))... yes
checking __attribute__((noreturn))... yes
checking __attribute__((const))... yes
checking __attribute__((format...))... yes
checking for sys/select.h... yes
creating ./config.status
creating config.h
config.h is unchanged
(cd src; make dep)
make[1]: 正在进入目录 `/home/torres/workspace/larbin-2.6.3/src'
cp ../config.h .
for d in utils interf fetch; do (cd $d; make dep-in); done
make[2]: 正在进入目录 `/home/torres/workspace/larbin-2.6.3/src/utils'
makedepend -f- -I.. -Y *.cc 2> /dev/null > .depend
make[2]: *** [dep-in] 错误 127
make[2]:正在离开目录 `/home/torres/workspace/larbin-2.6.3/src/utils'
make[2]: 正在进入目录 `/home/torres/workspace/larbin-2.6.3/src/interf'
makedepend -f- -I.. -Y *.cc 2> /dev/null > .depend
make[2]: *** [dep-in] 错误 127
make[2]:正在离开目录 `/home/torres/workspace/larbin-2.6.3/src/interf'
make[2]: 正在进入目录 `/home/torres/workspace/larbin-2.6.3/src/fetch'
makedepend -f- -I.. -Y *.cc 2> /dev/null > .depend
make[2]: *** [dep-in] 错误 127
make[2]:正在离开目录 `/home/torres/workspace/larbin-2.6.3/src/fetch'
make[1]: *** [dep] 错误 2
make[1]:正在离开目录 `/home/torres/workspace/larbin-2.6.3/src'
make: *** [dep] 错误 2

解决办法:

程序“makedepend”尚未安装。  您可以使用以下命令安装:
apt-get install xutils-dev


你可能感兴趣的:(linux 下 larbin 编译不通过)