aboutsummaryrefslogtreecommitdiff
path: root/iptables/configure-Avoid-addition-assignment-operators.patch
diff options
context:
space:
mode:
authorWoodpecker CI <emmett1.2miligrams@protonmail.com>2026-05-02 13:38:55 +0000
committerWoodpecker CI <emmett1.2miligrams@protonmail.com>2026-05-02 13:38:55 +0000
commit2797d15a6d1f8d7819b3519f14da01e8e1c8a195 (patch)
treecbf2ca143c7a7f0bbeb4b4924dfa59e7cbdb69d9 /iptables/configure-Avoid-addition-assignment-operators.patch
parent4735e72b7d83c0ac66d32a53ccf05a8841c427ef (diff)
downloadalicelinux-2797d15a6d1f8d7819b3519f14da01e8e1c8a195.tar.gz
alicelinux-2797d15a6d1f8d7819b3519f14da01e8e1c8a195.zip
Woodpecker CI 0053f7b158d9bbd0e91949fce4b89e86f91263a1 [SKIP CI]
Diffstat (limited to 'iptables/configure-Avoid-addition-assignment-operators.patch')
-rw-r--r--iptables/configure-Avoid-addition-assignment-operators.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/iptables/configure-Avoid-addition-assignment-operators.patch b/iptables/configure-Avoid-addition-assignment-operators.patch
deleted file mode 100644
index 04590f76..00000000
--- a/iptables/configure-Avoid-addition-assignment-operators.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-Patch-Source: https://lore.kernel.org/netfilter-devel/D711RJX8FZM8.1ZZRJ5PYBRMID@pwned.life/
----
-From a81896ac8c0fcc73ee52603748f876375906cead Mon Sep 17 00:00:00 2001
-From: fossdd <fossdd@pwned.life>
-Date: Mon, 13 Jan 2025 16:08:34 +0100
-Subject: [PATCH] configure: Avoid addition assignment operators
-
-For compatability with other /bin/sh like busybox ash, since they don't
-support the addition assignment operators (+=) and otherwise fails with:
-
- ./configure: line 14174: regular_CFLAGS+= -D__UAPI_DEF_ETHHDR=0: not found
-
-Signed-off-by: fossdd <fossdd@pwned.life>
----
- configure.ac | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 2d38a4d4..0106b316 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -202,8 +202,8 @@ fi;
- pkgdatadir='${datadir}/xtables';
-
- if test "x$enable_profiling" = "xyes"; then
-- regular_CFLAGS+=" -fprofile-arcs -ftest-coverage"
-- regular_LDFLAGS+=" -lgcov --coverage"
-+ regular_CFLAGS="$regular_CFLAGS -fprofile-arcs -ftest-coverage"
-+ regular_LDFLAGS="$regular_LDFLAGS -lgcov --coverage"
- fi
-
- AC_MSG_CHECKING([whether the build is using musl-libc])
-@@ -222,7 +222,7 @@ AC_COMPILE_IFELSE(
- AC_MSG_RESULT([${enable_musl_build}])
-
- if test "x$enable_musl_build" = "xyes"; then
-- regular_CFLAGS+=" -D__UAPI_DEF_ETHHDR=0"
-+ regular_CFLAGS="$regular_CFLAGS -D__UAPI_DEF_ETHHDR=0"
- fi
-
- define([EXPAND_VARIABLE],
---
-2.48.0
-