首页 > 代码库 > cacti 与 nagios 一些总结 【三】

cacti 与 nagios 一些总结 【三】

参考 php_apd.c:73:1: error: unknown type name ‘function_entry‘ (PHP 5.4)

php 版本级别5.4 有些不兼容插件

php_apd.c:73:1: error: unknown type name function_entry (PHP 5.4)This is documented on stackoverflow.com and bugs.php.net. Just replace line
function_entry apd_functions[] = {

with 

zend_function_entry apd_functions[] = {

 参考

http://ahoj.io/compiling-apd-for-php-54

cacti 与 nagios 一些总结 【三】