]> git.ipfire.org Git - thirdparty/xtables-addons.git/commitdiff
build: remove support for Linux 4.1
authorJan Engelhardt <jengelh@inai.de>
Mon, 12 Feb 2018 13:53:25 +0000 (14:53 +0100)
committerJan Engelhardt <jengelh@inai.de>
Mon, 12 Feb 2018 13:53:25 +0000 (14:53 +0100)
configure.ac
doc/changelog.txt
extensions/compat_xtables.h

index da3aa17ccdf91d109bbda1bc8ca15f3575deab6d..b64bc35111cf63cd202ff65b75e77ae850630e7c 100644 (file)
@@ -59,7 +59,7 @@ if test -n "$kbuilddir"; then
                echo "$kmajor.$kminor.$kmicro.$kstable in $kbuilddir";
                if test "$kmajor" -gt 4 -o "$kmajor" -eq 4 -a "$kminor" -gt 12; then
                        echo "WARNING: That kernel version is not officially supported yet. Continue at own luck.";
-               elif test "$kmajor" -eq 4 -a "$kminor" -le 0; then
+               elif test "$kmajor" -eq 4 -a "$kminor" -le 1; then
                        echo "WARNING: That kernel version is not officially supported.";
                elif test "$kmajor" -eq 4 -a "$kminor" -le 10; then
                        :;
index f9bbbf4c43950cdfbe996d262ba3b00b434462db..7eebad60b9b4b32a9c83accdcf537f2d50564beb 100644 (file)
@@ -4,7 +4,7 @@ HEAD
 Enhancements:
 - support for Linux up to 4.15
 Changes:
-- remove support for Linux 3.7--4.0
+- remove support for Linux 3.7--4.1
 
 
 v2.14 (2017-11-22)
index 57c7d1f206ef77b5b59ea6db90bbcfdbd6fde642..69c7c3356898136887549d9ba2fd0b2af1b9700d 100644 (file)
@@ -8,8 +8,8 @@
 
 #define DEBUGP Use__pr_debug__instead
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 1, 0)
-#      warning Kernels below 4.1 not supported.
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 2, 0)
+#      warning Kernels below 4.2 not supported.
 #endif
 
 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)