In extensions/Makefile the variable PFX_EXT_SLIB_OPTS is not appended to OPTIONALS, therefor 'make print-extensions' doesn't show any optional libxt_* extension. Patch against last iptables snapshot attached. Greets Sebastian. -- Mit freundlichen Grüßen / Yours sincerely Sebastian Claßen Postmaster ---------------------------------------------------------------------- Telefon: + 49 (0) 211 53087 522 Telefax: + 49 (0) 211 5381573 E-Mail: sebastian.classen@xxxxxxxxxx Website: www.freenet.de; www.mobilcom.de ---------------------------------------------------------------------- freenet AG Willstätterstr. 13 40549 Düsseldorf ---------------------------------------------------------------------- Vorsitzender des Aufsichtsrates: Prof. Dr. Helmut Thoma Vorstand: Eckhard Spoerr (Vors.), Axel Krieger, Stephan Esch, Eric Berger Sitz: Büdelsdorf Amtsgericht Kiel HRB 7306 KI
--- iptables-1.3.8-20071004/extensions/Makefile.orig 2007-10-05 14:42:17.000000000 +0200 +++ iptables-1.3.8-20071004/extensions/Makefile 2007-10-05 14:41:31.000000000 +0200 @@ -85,6 +85,7 @@ PF_EXT_SLIB+=$(PF_EXT_SLIB_OPTS) PF6_EXT_SLIB+=$(PF6_EXT_SLIB_OPTS) PFX_EXT_SLIB+=$(PFX_EXT_SLIB_OPTS) +OPTIONALS+=$(patsubst %,XT:%,$(PFX_EXT_SLIB_OPTS)) OPTIONALS+=$(patsubst %,IPv4:%,$(PF_EXT_SLIB_OPTS)) OPTIONALS+=$(patsubst %,IPv6:%,$(PF6_EXT_SLIB_OPTS))