* [PATCH nft] configure: Require newer version of libxtables
@ 2017-02-02 11:22 Elise Lennion
2017-02-05 20:48 ` Pablo Neira Ayuso
0 siblings, 1 reply; 2+ messages in thread
From: Elise Lennion @ 2017-02-02 11:22 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
Currently, the configure script requires xtables v1.6.0 when the option
--with-xtables is given. However, nftables-0.7 build fails with this
version, xtables v1.6.1 is the minimum required to have libxtables
support.
Fixes(Bug 1110 - Build failure if --with-xtables).
Signed-off-by: Elise Lennion <elise.lennion@gmail.com>
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index f1bca05..bef6c0b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -102,7 +102,7 @@ AC_ARG_WITH([xtables], [AS_HELP_STRING([--with-xtables],
[Use libxtables for iptables interaction)])],
[with_libxtables=yes], [with_libxtables=no])
AS_IF([test "x$with_libxtables" != xno], [
-PKG_CHECK_MODULES([XTABLES], [xtables >= 1.6.0])
+PKG_CHECK_MODULES([XTABLES], [xtables >= 1.6.1])
AC_DEFINE([HAVE_LIBXTABLES], [1], [0])
])
AC_SUBST(with_libxtables)
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH nft] configure: Require newer version of libxtables
2017-02-02 11:22 [PATCH nft] configure: Require newer version of libxtables Elise Lennion
@ 2017-02-05 20:48 ` Pablo Neira Ayuso
0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2017-02-05 20:48 UTC (permalink / raw)
To: Elise Lennion; +Cc: netfilter-devel
On Thu, Feb 02, 2017 at 09:22:55AM -0200, Elise Lennion wrote:
> Currently, the configure script requires xtables v1.6.0 when the option
> --with-xtables is given. However, nftables-0.7 build fails with this
> version, xtables v1.6.1 is the minimum required to have libxtables
> support.
>
> Fixes(Bug 1110 - Build failure if --with-xtables).
Also applied, thanks Elise.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-02-05 20:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-02 11:22 [PATCH nft] configure: Require newer version of libxtables Elise Lennion
2017-02-05 20:48 ` Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).