Support for iptables action has been dropped. Remove tc-mod-iptables and related
patch (175-reduce-dynamic-syms.patch).
We also add the missing libbpf dependency for `ss` since iproute 8740ca9
("ss: add support for BPF socket-local storage") now means that `ss` requires
libbpf as well.
Fix 170-ip_tiny.patch, as the help text didn't match all the included functions.
Drop upstreamed patches 402-bpf-fix-warning-from-basename.patch
and 403-bpf-include-libgen.h-for-basename.patch.
All other patches automatically rebased.
Co-authored-by: Rany Hany <rany_hany@riseup.net>
Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
Signed-off-by: Rany Hany <rany_hany@riseup.net>
20 lines
542 B
Diff
20 lines
542 B
Diff
--- a/configure
|
|
+++ b/configure
|
|
@@ -407,14 +407,8 @@ EOF
|
|
if $CC -I$INCLUDE -o $TMPDIR/strtest $TMPDIR/strtest.c >/dev/null 2>&1; then
|
|
echo "no"
|
|
else
|
|
- if ${PKG_CONFIG} libbsd --exists; then
|
|
- echo 'CFLAGS += -DHAVE_LIBBSD' "$(${PKG_CONFIG} libbsd --cflags)" >>$CONFIG
|
|
- echo 'LDLIBS +=' "$(${PKG_CONFIG} libbsd --libs)" >> $CONFIG
|
|
- echo "no"
|
|
- else
|
|
- echo 'CFLAGS += -DNEED_STRLCPY' >>$CONFIG
|
|
- echo "yes"
|
|
- fi
|
|
+ echo 'CFLAGS += -DNEED_STRLCPY' >>$CONFIG
|
|
+ echo "yes"
|
|
fi
|
|
rm -f $TMPDIR/strtest.c $TMPDIR/strtest
|
|
}
|