./autogen.sh: line 44: libtoolize: command not found

./autogen.sh 
+ aclocal
+ libtoolize --copy --force
./autogen.sh: line 44: libtoolize: command not found

是因为缺少libtool软件包
make 时  出现的错误
configure: creating ./config.status
 cd  && /bin/sh ./config.status Makefile 
/bin/sh: ./config.status: No such file or directory
make: *** [Makefile] Error 127

安装libtool*  在重新执行 就ok了
./autogen.sh 
autoconfig  这个也要执行 生成make 需要的文件
然后 configure 开始吧

你可能感兴趣的:(c/c+程序设计)