]> git.ipfire.org Git - thirdparty/xtables-addons.git/commitdiff
build: remove support for Linux 3.3
authorJan Engelhardt <jengelh@inai.de>
Tue, 16 Oct 2012 02:03:50 +0000 (04:03 +0200)
committerJan Engelhardt <jengelh@inai.de>
Mon, 12 Nov 2012 17:31:22 +0000 (18:31 +0100)
INSTALL
configure.ac
doc/changelog.txt
extensions/compat_xtables.h

diff --git a/INSTALL b/INSTALL
index cb67cd27ab39e76ce0c792d8635a91cac52e593b..d6e6699ca2a11476c0c8a67499416f8981a71f08 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -14,7 +14,7 @@ Supported configurations for this release
 
        * iptables >= 1.4.5
 
-       * kernel-devel >= 3.3
+       * kernel-devel >= 3.4
          with prepared build/output directory
          - CONFIG_NF_CONNTRACK or CONFIG_IP_NF_CONNTRACK
          - CONFIG_NF_CONNTRACK_MARK or CONFIG_IP_NF_CONNTRACK_MARK
index 1c35a4feddc5bc46bfdcd029fd04319a6d00ff39..ba93be88924d6d91b2346696633b20ee5b49e38c 100644 (file)
@@ -65,7 +65,7 @@ if test -n "$kbuilddir"; then
                echo "$kmajor.$kminor.$kmicro.$kstable in $kbuilddir";
                if test "$kmajor" -gt 3 -o "$kmajor" -eq 3 -a "$kminor" -gt 6; then
                        echo "WARNING: That kernel version is not officially supported.";
-               elif test "$kmajor" -eq 3 -a "$kminor" -ge 3; then
+               elif test "$kmajor" -eq 3 -a "$kminor" -ge 4; then
                        :;
                else
                        echo "WARNING: That kernel version is not officially supported.";
index 326925e0fd83e253af367f3caf093cf27cd58e0f..7b4f1f3b1591b98c607fc0a73208a0fdaf519e2b 100644 (file)
@@ -2,7 +2,7 @@
 HEAD
 ====
 Changes:
-- remove support for Linux 2.6.17–3.2
+- remove support for Linux 2.6.17–3.3
 - remove xt_TEE (this is available upstream since 2.6.35)
 - remove xt_CHECKSUM (this is available upstream since 2.6.36)
 
index ffcf6fe630e4054a2a4fdb238c472c2538e6b2cf..1164c8a6478dee3f64067d7d4627c783ae557183 100644 (file)
@@ -8,8 +8,8 @@
 
 #define DEBUGP Use__pr_debug__instead
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 3, 0)
-#      warning Kernels below 3.3 not supported.
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)
+#      warning Kernels below 3.4 not supported.
 #endif
 
 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)