From d7aeb7da4bb502b0424ebdd4a65646357274edd2 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 2 Nov 2011 00:17:54 +0100 Subject: [PATCH] build: iptables >= 1.4.5 is in fact required --- INSTALL | 2 +- configure.ac | 2 +- doc/changelog.txt | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index 94616ca..ab3af1b 100644 --- a/INSTALL +++ b/INSTALL @@ -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 diff --git a/configure.ac b/configure.ac index c51a6b4..c7431a4 100644 --- a/configure.ac +++ b/configure.ac @@ -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], [:], [:]) diff --git a/doc/changelog.txt b/doc/changelog.txt index 655e547..c5298ff 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -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)