From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Shivani Bhardwaj <shivanib134@gmail.com>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH conntrack-tools] configure: Fix flex version check
Date: Sat, 18 Jun 2016 14:42:45 +0200 [thread overview]
Message-ID: <20160618124245.GA13901@salvia> (raw)
In-Reply-To: <1466191063-25552-1-git-send-email-shivanib134@gmail.com>
Hi Shivani,
Thanks for following up on this, see comment below.
On Sat, Jun 18, 2016 at 12:47:43AM +0530, Shivani Bhardwaj wrote:
> Following the fixes for version check in iptables and nftables, make
> conntrack-tools avoid generating false warning for Flex version greater
> than 2.5.x.
>
> Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>
> ---
> configure.ac | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/configure.ac b/configure.ac
> index c541034..3bc5155 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -46,7 +46,7 @@ flex_major=`echo $flex_version| cut -d . -f 1`
> flex_minor=`echo $flex_version| cut -d . -f 2`
> flex_rev=`echo $flex_version| cut -d . -f 3`
>
> -if test "$flex_major" -eq "2" && test "$flex_minor" -eq "5" && test "$flex_rev" -ge "33"; then
> +if (test "$flex_major" -eq "2" && test "$flex_minor" -eq "5" && test "$flex_rev" -ge "33") || (test "$flex_major" -eq "2" && test "$flex_minor" -gt "5") || test "$flex_major" -gt "2"; then
> AC_MSG_RESULT([$flex_version. OK])
> else
> AC_MSG_WARN([flex version $flex_version found.
I'm starting to think that it's better to get rid of this version
check. This was introduced in 2008:
ed50c34 ("add flex version warning (better with >= 2.5.33)")
I can see RPM packages for 2.5.53 since 2008.
The development of conntrack-tools a bit before that time, so I think
it's better to nuke these checks, better since we have less code to
maintain :)
Thanks.
next prev parent reply other threads:[~2016-06-18 12:42 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-17 19:17 [PATCH conntrack-tools] configure: Fix flex version check Shivani Bhardwaj
2016-06-18 12:42 ` Pablo Neira Ayuso [this message]
2016-06-18 16:49 ` Shivani Bhardwaj
2016-06-20 9:45 ` Pablo Neira Ayuso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160618124245.GA13901@salvia \
--to=pablo@netfilter.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=shivanib134@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.