]> git.ipfire.org Git - thirdparty/xtables-addons.git/commitdiff
Xtables-addons 3.26 v3.26
authorJan Engelhardt <jengelh@inai.de>
Fri, 22 Mar 2024 17:09:34 +0000 (18:09 +0100)
committerJan Engelhardt <jengelh@inai.de>
Fri, 22 Mar 2024 17:09:41 +0000 (18:09 +0100)
The first Linux version to have the new SHASH stuff is Linux 4.20,
but 4.20 does not build anymore under current gcc, so it is
impractical to test, thus the requirement is bumped to the next
LT version, which is 5.4(.272) as of writing.

INSTALL.rst
configure.ac
doc/changelog.rst

index 58df352c0161854e9b3f8f76d322f5f1291ff2d7..3eba5952b8d8665191982bca6655653cb546918c 100644 (file)
@@ -16,7 +16,7 @@ Supported configurations for this release
 
 * iptables >= 1.6.0
 
-* kernel-devel >= 4.16
+* kernel-devel >= 5.4
   with prepared build/output directory
 
   * ``CONFIG_NF_CONNTRACK``
index 915e76a1d802db01c6b4501bb99ee45c6a2c684a..b33057edaea436837b906144848f551f1bf59c8d 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([xtables-addons], [3.25])
+AC_INIT([xtables-addons], [3.26])
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_MACRO_DIR([m4])
@@ -58,15 +58,13 @@ AS_IF([test -n "$kbuilddir"], [
                yoff
        ], [
                echo "$kmajor.$kminor.$kmicro.$kstable in $kbuilddir";
-               if test "$kmajor" -gt 6 -o "$kmajor" -eq 6 -a "$kminor" -gt 2; then
+               if test "$kmajor" -gt 6 -o "$kmajor" -eq 6 -a "$kminor" -gt 9; then
                        yon
                        echo "WARNING: That kernel version is not officially supported yet. Continue at own luck.";
                        yoff
                elif test "$kmajor" -eq 6; then
                        :
-               elif test "$kmajor" -eq 5 -a "$kminor" -ge 0; then
-                       :
-               elif test "$kmajor" -eq 4 -a "$kminor" -ge 16; then
+               elif test "$kmajor" -eq 5 -a "$kminor" -ge 4; then
                        :
                else
                        yon
index f1ca0a71f1dc33163330a45e3bee8e8e8484afa9..8ec37a5fea985575bb17b4f2bf73812f653177d6 100644 (file)
@@ -1,3 +1,10 @@
+v3.26 (2024-03-22)
+==================
+
+* xt_pknock: fix misuse of shash API
+* xt_SYSRQ: resolve crash, switch to new SHASH_ON_STACK
+
+
 v3.25 (2023-08-18)
 ==================