Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-dev: Re: [Wireshark-dev] packet-lorawan.c compile error because of stuff added yester

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Tue, 13 Jun 2017 16:14:43 -0700
On Jun 13, 2017, at 1:29 PM, Richard Sharpe <realrichardsharpe@xxxxxxxxx> wrote:

> It's a bit rude to cause build errors just because I don't have gcrypt
> 1.6.0 or above.

Yes, that's why those #ifs were checked in - without them, you get build errors because the pre-1.6.0 versions of libcrypt don't have the gcry_mac_ routines but the code refers to them.  Either we need to require a newer version of libgcrypt or we need to have #ifs to avoid using functions not present in the version with which Wireshark is built.

The change in

	https://code.wireshark.org/review/22116

which was just submitted should fix that issue.