标签:解决方法 style oca fgets bsp from 错误 1 included tar.gz
解压并进入 tar zvxf nagios-plugins-1.4.15.tar.gz && cd nagios-plugins-1.4.15
编译安装
./configure --with-nagios-user=nagios --with-nagios-group=nagios
make
### 遇到错误
### show
### In file included from localcharset.c:26:0:
### ./stdio.h:456:1: 错误:‘gets’未声明(不在函数内)
### _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
### ^
### make[4]: *** [localcharset.o] 错误 1
### make[4]: 离开目录“/nagios/nagios-plugins-1.4.15/gl”
### make[3]: *** [all-recursive] 错误 1
### make[3]: 离开目录“/nagios/nagios-plugins-1.4.15/gl”
### make[2]: *** [all] 错误 2
### make[2]: 离开目录“/nagios/nagios-plugins-1.4.15/gl”
### make[1]: *** [all-recursive] 错误 1
### make[1]: 离开目录“/nagios/nagios-plugins-1.4.15”
### make: *** [all] 错误 2
### 解决方法
### cd /nagios/nagios-plugins-1.4.15/gl
### sed -i -e ‘/gets is a security/d‘ ./stdio.in.h
### 然后重新make
标签:解决方法 style oca fgets bsp from 错误 1 included tar.gz
原文地址:http://www.cnblogs.com/pzk7788/p/6566481.html