From patchwork Mon Nov 23 10:18:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Wagner X-Patchwork-Id: 547433 X-Patchwork-Delegate: pablo@netfilter.org 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 358FE140291 for ; Mon, 23 Nov 2015 21:23:54 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753955AbbKWKXx (ORCPT ); Mon, 23 Nov 2015 05:23:53 -0500 Received: from mail.bmw-carit.de ([62.245.222.98]:46184 "EHLO linuxmail.bmw-carit.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753852AbbKWKXw (ORCPT ); Mon, 23 Nov 2015 05:23:52 -0500 X-Greylist: delayed 301 seconds by postgrey-1.27 at vger.kernel.org; Mon, 23 Nov 2015 05:23:52 EST Received: from localhost (handman.bmw-carit.intra [192.168.101.15]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by linuxmail.bmw-carit.de (Postfix) with ESMTPS id C399E400BF; Mon, 23 Nov 2015 11:07:47 +0100 (CET) From: Daniel Wagner To: netfilter-devel@vger.kernel.org Cc: Daniel Wagner Subject: [PATCH] iptables: Link libext_arpt to static build Date: Mon, 23 Nov 2015 11:18:47 +0100 Message-Id: <1448273927-24853-1-git-send-email-daniel.wagner@bmw-carit.de> X-Mailer: git-send-email 2.4.3 Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org The libext_arpt is not included when linking the static version of iptables. Signed-off-by: Daniel Wagner --- Hi, I had some troubles getting a static version of iptables. Not sure if I fixed it correctly. Anyway I am able to proceed with testing. cheers, daniel iptables/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iptables/Makefile.am b/iptables/Makefile.am index 132fe5f..29e7fe1 100644 --- a/iptables/Makefile.am +++ b/iptables/Makefile.am @@ -41,7 +41,7 @@ xtables_compat_multi_SOURCES += xtables-save.c xtables-restore.c \ xtables-arp-standalone.c xtables-arp.c \ getethertype.c nft-bridge.c \ xtables-eb-standalone.c xtables-eb.c -xtables_compat_multi_LDADD += ${libmnl_LIBS} ${libnftnl_LIBS} ../extensions/libext4.a ../extensions/libext6.a ../extensions/libext_ebt.a +xtables_compat_multi_LDADD += ${libmnl_LIBS} ${libnftnl_LIBS} ../extensions/libext4.a ../extensions/libext6.a ../extensions/libext_ebt.a ../extensions/libext_arpt.a # yacc and lex generate dirty code xtables_compat_multi-xtables-config-parser.o xtables_compat_multi-xtables-config-syntax.o: AM_CFLAGS += -Wno-missing-prototypes -Wno-missing-declarations -Wno-implicit-function-declaration -Wno-nested-externs -Wno-undef -Wno-redundant-decls xtables_compat_multi_SOURCES += xshared.c