The compile process terminates because there is a redefinition in iptables.c iptables.c:147: redefinition of `ipt_get_target' /usr/src/linux/include/linux/netfilter_ipv4/ip_tables.h:294: `ipt_get_target' previously defined here make: *** [iptables.o] Error 1 In the source the failure happens here: #ifndef __OPTIMIZE__ struct ipt_entry_target * ipt_get_target(struct ipt_entry *e) { return (void *)e + e->target_offset; } #endif The compile doesn't work with the default settings because no -Ox is defined CFLAGS="athlon-xp -O3 -pipe" fixes the problem, but I think it should work without too
*** This bug has been marked as a duplicate of 10424 ***