Hi, Patrick. Thank you for new itpables release. There are some issues I experience with it: 1. build fails: if i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I. -D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64 -D_REENTRANT -Wall -Waggregate-return -Wmissing-declarations -Wmissing-prototypes -Wredundant-decls -Wshadow -Wstrict-prototypes -Winline -pipe -DXTABLES_LIBDIR=\"/lib/xtables\" -DXTABLES_INTERNAL -I./include -I./include -I no/include -I no/include -DIPTABLES_MULTI -DNO_SHARED_LIBS=1 -O2 -march=i686 -pipe -mtune=i686 -march=pentium-m -ggdb -U_FORTIFY_SOURCE -MT iptables_static-xtables.o -MD -MP -MF ".deps/iptables_static-xtables.Tpo" -c -o iptables_static-xtables.o `test -f 'xtables.c' || echo './'`xtables.c; \ then mv -f ".deps/iptables_static-xtables.Tpo" ".deps/iptables_static-xtables.Po"; else rm -f ".deps/iptables_static-xtables.Tpo"; exit 1; fi xtables.c: In function 'xtables_find_target': xtables.c:641: error: 'LOAD_MUST_SUCCEED' undeclared (first use in this function) The following simple sed fixes this issue: sed -e 's:\<\(LOAD_MUST_SUCCEED\)\>:XTF_\1:' -i xtables.c 2. build fails with --as-needed. Patch in attachment (iptables-1.4.3--as-needed.patch) fixes this issue. 3. http://bugzilla.netfilter.org/show_bug.cgi?id=568 is still there, although proposed patch fixes the issue. Could you apply this changes? -- Peter.