Package: conntrack Version: 0.9.6-2 Severity: serious Tags: patch Conntrack FTBFS on armel, mips and powerpc due to:
[...] cc1: warnings being treated as errors read_config_lex.c:4451: error: 'input' defined but not used make[2]: *** [read_config_lex.o] Error 1 make[2]: Leaving directory `/build/buildd/conntrack-0.9.6/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/build/buildd/conntrack-0.9.6' make: *** [build-stamp] Error 2 I believe other architectures will also start to fail once they (re-)build conntrack with gcc-4.3. The appended patch fixes the problem. Tested with a build on mips. Thiemo --- conntrack-0.9.6.original/src/read_config_lex.l 2008-03-08 11:25:30.000000000 +0000 +++ conntrack-0.9.6/src/read_config_lex.l 2008-04-07 17:47:53.000000000 +0100 @@ -23,6 +23,7 @@ %} %option yylineno +%option noinput %option nounput ws [ \t]+ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

