xt_CHECKSUM: abort build when the feature is already provided by mainline

This commit is contained in:
Jan Engelhardt
2011-08-12 15:39:57 +02:00
parent 27a77b62f5
commit 5ef3a7c436
2 changed files with 8 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
HEAD
====
- xt_CHECKSUM: abort build when the feature is already provided by mainline
- xt_TARPIT: fix kernel warning about RTAX_HOPLIMIT being used
- xt_TEE: abort build when the feature is already provided by mainline
- xt_psd: restore functionality with UDP

View File

@@ -12,6 +12,13 @@
#include <linux/module.h>
#include <linux/skbuff.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 36)
# error ----------------------------------------------------------
# error This module has been merged into, and is available in the
# error mainline since Linux kernel v2.6.36. Please use that.
# error ----------------------------------------------------------
#endif
#include <linux/netfilter/x_tables.h>
#include "xt_CHECKSUM.h"
#include "compat_xtables.h"