From patchwork Tue Jul 3 18:33:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Locke X-Patchwork-Id: 168850 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 033D62C00C9 for ; Wed, 4 Jul 2012 04:40:56 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756382Ab2GCSky (ORCPT ); Tue, 3 Jul 2012 14:40:54 -0400 Received: from praxis.kevinlocke.name ([205.185.125.39]:36911 "EHLO praxis.kevinlocke.name" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756229Ab2GCSkx (ORCPT ); Tue, 3 Jul 2012 14:40:53 -0400 X-Greylist: delayed 421 seconds by postgrey-1.27 at vger.kernel.org; Tue, 03 Jul 2012 14:40:53 EDT Received: from kevinzilla (host-184-166-128-97.bzm-mt.client.bresnan.net [184.166.128.97]) (Authenticated sender: kevin@kevinlocke.name) by praxis.kevinlocke.name (Postfix) with ESMTPSA id 624CC160024E for ; Tue, 3 Jul 2012 12:33:47 -0600 (MDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=kevinlocke.name; s=praxis; t=1341340427; bh=Y89CBS/6m7DYNHQVY84bh36a+lMXSvjJURP77xdhTz4=; h=Date:From:To:Subject:Message-ID:MIME-Version:Content-Type; b=obrtCWlzIQb41erRGzWpCJHLVmOjKwqkoHGFwxra1NUZ1/njeDw7ktfiOB4iptZWw hqP69YATmdZVcX3BSSFFbMrhstr46bf2sFQZonunYVfrKik9KTO+n24l6PAqso29ES Elsr9b26LdsPz319RcYhRhkoVb/jek6Ya4usXvSo= Received: by kevinzilla (Postfix, from userid 1000) id C0BF46080A; Tue, 3 Jul 2012 12:33:45 -0600 (MDT) Date: Tue, 3 Jul 2012 12:33:45 -0600 From: Kevin Locke To: netfilter-devel@vger.kernel.org Subject: [PATCH] Include for csum_ipv6_magic Message-ID: <20120703183345.GA14043@kevinzilla> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: 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"