Ubuntu下安装libpcap遇到的一些问题

对libpcap的解压包进行./configure后报出以下信息,无法生成Makefile

configure: error: Your operating system's lex is insufficient to compile

 libpcap.  flex is a lex replacement that has many advantages, including
 being able to compile libpcap.  For more information, see

 http://www.gnu.org/software/flex/flex.html .


原因是:缺少flex包的问题

解决的方法是:安装flex

sudo apt-get install flex

感谢这位仁兄的指导

http://www.baidu.com/p/kato22?from=zhidao


yacc -d grammar.y
make: yacc:命令未找到
make: *** [grammar.c] 错误 127
make: *** 正在等待未完成的任务....


这个需要安装byacc

sudo apt-get install byacc

猜你喜欢

转载自blog.csdn.net/colouring/article/details/46359423