boa-0.94.13
错误:
util.c:100:1: pasting "t" and "->" does not give a valid preprocessing token
解决:
#define TIMEZONE_OFFSET(foo) foo##->tm_gmtoff
------->改为
#define TIMEZONE_OFFSET(foo) foo->tm_gmtoff
BOA无法启动,查了error_log:
[24/Mar/2008:16:23:51 +0000] boa.c:226 - icky Linux kernel bug!: Success
解决:
if (setuid(0) != -1) {
DIE("icky Linux kernel bug!");
}
---------->
/*
if (setuid(0) != -1) {
DIE("icky Linux kernel bug!");
}
*/
阅读(3736) | 评论(1) | 转发(1) |