Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1072294
  • 博文数量: 132
  • 博客积分: 612
  • 博客等级: 中士
  • 技术积分: 1389
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-14 16:06
文章分类

全部博文(132)

文章存档

2015年(2)

2014年(55)

2013年(53)

2012年(2)

2011年(20)

分类: LINUX

2014-03-25 10:56:01

转载地址 http://blog.csdn.net/chrisniu1984/article/details/6620764
这个错误发生在 执行 ./configure 文件时。
[plain] view plaincopy
  1. checking for a BSD-compatible install... /usr/bin/install -c  
  2. checking whether build environment is sane... yes  
  3. checking for gawk... gawk  
  4. checking whether make sets $(MAKE)... yes  
  5. checking for gcc... gcc  
  6. checking for C compiler default output file name... a.out  
  7. checking whether the C compiler works... yes  
  8. checking whether we are cross compiling... no  
  9. checking for suffix of executables...  
  10. checking for suffix of object files... o  
  11. checking whether we are using the GNU C compiler... yes  
  12. checking whether gcc accepts -g... yes  
  13. checking for gcc option to accept ANSI C... none needed  
  14. checking for style of include used by make... GNU  
  15. checking dependency style of gcc... gcc3  
  16. checking for g++... g++  
  17. checking whether we are using the GNU C++ compiler... yes  
  18. checking whether g++ accepts -g... yes  
  19. checking dependency style of g++... gcc3  
  20. checking for ranlib... ranlib  
  21. checking for main in -lpthread... yes  
  22. checking whether GLib supports loadable modules... no  
  23. configure: creating ./config.status  
  24. config.status: creating Makefile  
  25. config.status: creating src/Makefile  
  26. config.status: creating \  
  27. .infig.status: error: cannot find input file: \  


这是因为configure.in的文件格式不对(是dos格式),用编辑器打开configure.in文件,将其重新保存为 unix格式。

[plain] view plaincopy
  1. > vi configure.in  
  2. vi > set fileformat=unix  
  3. vi > wq  
  4. > aclocal  
  5. > autoconf  
  6. > automake -a  
  7. > ./configure 
阅读(1396) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~