From patchwork Tue Jul 3 18:33:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Include for csum_ipv6_magic Date: Tue, 03 Jul 2012 08:33:45 -0000 From: Kevin Locke X-Patchwork-Id: 168850 Message-Id: <20120703183345.GA14043@kevinzilla> To: netfilter-devel@vger.kernel.org xt_ECHO fails to build on PPC because csum_ipv6_magic is declared in , which is not implicitly included from other headers on PPC causing build failures due to this function being undefined. So, include this header explicitly. Note: Same cause as . Signed-off-by: Kevin Locke --- extensions/xt_ECHO.c | 1 + 1 file changed, 1 insertion(+) diff --git a/extensions/xt_ECHO.c b/extensions/xt_ECHO.c index efbceff..057d81a 100644 --- a/extensions/xt_ECHO.c +++ b/extensions/xt_ECHO.c @@ -18,6 +18,7 @@ # include #endif #include +#include #include #include #include "compat_xtables.h"