apache 2.4无法安装mod_rpaf
- apache2.4已经有了mod_remoteip.so 但手头事情太多,没时间仔细研究,Directadmin无法正常加载,先行编译mod_rpaf达到要求
- 编译时提示的错误
- [root@server mod_rpaf-0.6]# apxs -i -c -n mod_rpaf-2.0.so mod_rpaf-2.0.c
- /var/www/build/libtool --silent --mode=compile gcc -std=gnu99 -prefer-pic -DLINUX -D_REENTRANT -D_GNU_SOURCE -g -O2 -pthread -I/usr/include/apache -I/usr/include/apache -I/usr/include/apache -c -o mod_rpaf-2.0.lo mod_rpaf-2.0.c && touch mod_rpaf-2.0.slo
- mod_rpaf-2.0.c: In function 'rpaf_cleanup':
- mod_rpaf-2.0.c:150: error: 'conn_rec' has no member named 'remote_ip'
- mod_rpaf-2.0.c:151: error: 'conn_rec' has no member named 'remote_addr'
- mod_rpaf-2.0.c:151: warning: implicit declaration of function 'inet_addr'
- mod_rpaf-2.0.c:151: error: 'conn_rec' has no member named 'remote_ip'
- mod_rpaf-2.0.c: In function 'change_remote_ip':
- mod_rpaf-2.0.c:164: error: 'conn_rec' has no member named 'remote_ip'
- mod_rpaf-2.0.c:183: error: 'conn_rec' has no member named 'remote_ip'
- mod_rpaf-2.0.c:186: error: 'conn_rec' has no member named 'remote_ip'
- mod_rpaf-2.0.c:187: error: 'conn_rec' has no member named 'remote_addr'
- mod_rpaf-2.0.c:187: error: 'conn_rec' has no member named 'remote_ip'
- apxs:Error: Command failed with rc=65536
- .
- 解决办法:
- wget http://mirror.trouble-free.net/sources/mod_rpaf-0.6.tar.gz
- tar xzvf mod_rpaf-0.6.tar.gz
- cd mod_rpaf-0.6
- git clone git://gist.github.com/2716030.git
- patch < 2716030/mod_rpaf-2.0.c.patch
- apxs -i -c -n mod_rpaf-2.0.so mod_rpaf-2.0.c