diff options
author | 2018-11-20 14:53:28 +0100 | |
---|---|---|
committer | 2018-11-20 14:54:09 +0100 | |
commit | 070fae35cc6d85cdb9c35b92b476394e17c8c144 (patch) | |
tree | 617b0fbe958309d3733a15c28c71605f05abbcfe /net-firewall/iptables/files/iptables-1.4.21-configure.patch | |
parent | dev-python/ipython: also enforce prompt_toolkit-2 dep. for 6.1.0 (diff) | |
download | gentoo-070fae35cc6d85cdb9c35b92b476394e17c8c144.tar.gz gentoo-070fae35cc6d85cdb9c35b92b476394e17c8c144.tar.bz2 gentoo-070fae35cc6d85cdb9c35b92b476394e17c8c144.zip |
net-firewall/iptables: Removed old.
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'net-firewall/iptables/files/iptables-1.4.21-configure.patch')
-rw-r--r-- | net-firewall/iptables/files/iptables-1.4.21-configure.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/net-firewall/iptables/files/iptables-1.4.21-configure.patch b/net-firewall/iptables/files/iptables-1.4.21-configure.patch deleted file mode 100644 index e827885f1688..000000000000 --- a/net-firewall/iptables/files/iptables-1.4.21-configure.patch +++ /dev/null @@ -1,34 +0,0 @@ -https://bugs.gentoo.org/557586 - -From b24e59fba39120bfdb9e521bbd0af8f33a60466e Mon Sep 17 00:00:00 2001 -From: Mike Frysinger <vapier@gentoo.org> -Date: Sat, 15 Aug 2015 14:12:39 -0400 -Subject: [PATCH] configure: fix 3rd arg w/AC_ARG_ENABLE - -The 3rd arg is used when --{enable,disable}-foo are passed in, not when -the feature is enabled. Use the existing $enableval instead. - -Signed-off-by: Mike Frysinger <vapier@gentoo.org> ---- - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/configure -+++ b/configure -@@ -11898,14 +11898,14 @@ fi - - # Check whether --enable-bpf-compiler was given. - if test "${enable_bpf_compiler+set}" = set; then : -- enableval=$enable_bpf_compiler; enable_bpfc="yes" -+ enableval=$enable_bpf_compiler; enable_bpfc="$enableval" - else - enable_bpfc="no" - fi - - # Check whether --enable-nfsynproxy was given. - if test "${enable_nfsynproxy+set}" = set; then : -- enableval=$enable_nfsynproxy; enable_nfsynproxy="yes" -+ enableval=$enable_nfsynproxy; enable_nfsynproxy="$enableval" - else - enable_nfsynproxy="no" - fi |