build: iptables >= 1.4.5 is in fact required

This commit is contained in:
Jan Engelhardt
2011-11-02 00:17:54 +01:00
parent 3069c9a3a2
commit d7aeb7da4b
3 changed files with 5 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ in combination with the kernel's Kbuild system.
Supported configurations for this release
=========================================
* iptables >= 1.4.3
* iptables >= 1.4.5
* kernel-source >= 2.6.29
with prepared build/output directory

View File

@@ -22,7 +22,7 @@ fi
AC_CHECK_HEADERS([linux/netfilter/x_tables.h], [],
[AC_MSG_ERROR([You need to have linux/netfilter/x_tables.h, see INSTALL file for details])])
PKG_CHECK_MODULES([libxtables], [xtables >= 1.4.3])
PKG_CHECK_MODULES([libxtables], [xtables >= 1.4.5])
xtlibdir="$(pkg-config --variable=xtlibdir xtables)"
PKG_CHECK_MODULES([libmnl], [libmnl >= 1], [:], [:])

View File

@@ -1,6 +1,9 @@
HEAD
====
Fixes:
- build: the code actually requires at least iptables 1.4.5 (would yield a
compile error otherwise), make sure configure checks for it; update INSTALL
v1.39 (2011-09-21)