summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/iptables/iptables
diff options
context:
space:
mode:
authorCristian Iorga <cristian.iorga@intel.com>2013-06-05 15:47:15 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-07 16:41:03 +0100
commit02971543527e993b60132ddb101a9093efa3f324 (patch)
tree30c047a7172fec24e34a1d27da22918da095caee /meta/recipes-extended/iptables/iptables
parentef9fad8fff1c413bc0eab15625f051d4e2d0a201 (diff)
downloadopenembedded-core-contrib-02971543527e993b60132ddb101a9093efa3f324.tar.gz
iptables: upgrade to 1.4.19.1
fix-iptables-extensions-build-error.patch no longer needed. Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/iptables/iptables')
-rw-r--r--meta/recipes-extended/iptables/iptables/fix-iptables-extensions-build-error.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/meta/recipes-extended/iptables/iptables/fix-iptables-extensions-build-error.patch b/meta/recipes-extended/iptables/iptables/fix-iptables-extensions-build-error.patch
deleted file mode 100644
index 4cd919de19..0000000000
--- a/meta/recipes-extended/iptables/iptables/fix-iptables-extensions-build-error.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 0a43f156e23edf616859ac5a8c90e41ccc5cb1cd Mon Sep 17 00:00:00 2001
-From: Cristian Iorga <cristian.iorga@intel.com>
-Date: Wed, 16 Jan 2013 20:14:43 +0200
-Subject: [PATCH] extensions: fix iptables extensions build error
- in cross-compilation environments
-
-libtool is properly declared and used for cross-platform
-build environments
-
-Upstream-Status: Pending
-
-Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
----
- extensions/GNUmakefile.in | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/extensions/GNUmakefile.in b/extensions/GNUmakefile.in
-index adad4d6..befb1fb 100644
---- a/extensions/GNUmakefile.in
-+++ b/extensions/GNUmakefile.in
-@@ -13,6 +13,7 @@ xtlibdir = @xtlibdir@
-
- CC = @CC@
- CCLD = ${CC}
-+LIBTOOL = @LIBTOOL@
- CFLAGS = @CFLAGS@
- CPPFLAGS = @CPPFLAGS@
- LDFLAGS = @LDFLAGS@
-@@ -94,10 +95,10 @@ lib%.so: lib%.la
- ${AM_VERBOSE_NULL} ln -fs .libs/$@ $@
-
- lib%.la: lib%.lo
-- ${AM_VERBOSE_CCLD} ../libtool ${AM_LIBTOOL_SILENT} --tag=CC --mode=link ${CCLD} ${AM_LDFLAGS} -module ${LDFLAGS} -o $@ $< ../libxtables/libxtables.la ${$*_LIBADD} -rpath ${xtlibdir}
-+ ${AM_VERBOSE_CCLD} ${LIBTOOL} ${AM_LIBTOOL_SILENT} --tag=CC --mode=link ${CCLD} ${AM_LDFLAGS} -module ${LDFLAGS} -o $@ $< ../libxtables/libxtables.la ${$*_LIBADD} -rpath ${xtlibdir}
-
- lib%.lo: ${srcdir}/lib%.c
-- ${AM_VERBOSE_CC} ../libtool ${AM_LIBTOOL_SILENT} --tag=CC --mode=compile ${CC} ${AM_CPPFLAGS} ${AM_DEPFLAGS} ${AM_CFLAGS} -D_INIT=lib$*_init ${CFLAGS} -o $@ -c $<
-+ ${AM_VERBOSE_CC} ${LIBTOOL} ${AM_LIBTOOL_SILENT} --tag=CC --mode=compile ${CC} ${AM_CPPFLAGS} ${AM_DEPFLAGS} ${AM_CFLAGS} -D_INIT=lib$*_init ${CFLAGS} -o $@ -c $<
-
- libxt_NOTRACK.so: libxt_CT.so
- ${AM_VERBOSE_GEN} ln -fs $< $@
---
-1.7.10.4
-