tests: Fix Kerberos detection

This commit is contained in:
João Valverde 2022-03-28 01:09:50 +01:00
parent 1ff681cec6
commit e306c53062
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ def features(cmd_tshark, make_env):
have_x64='Compiled (64-bit)' in tshark_v,
have_lua='with Lua' in tshark_v,
have_nghttp2='with nghttp2' in tshark_v,
have_kerberos='with MIT Kerberos' in tshark_v or 'with Heimdal Kerberos' in tshark_v,
have_kerberos='with Kerberos' in tshark_v,
have_libgcrypt16=gcry_m and gcry_ver >= (1,6),
have_libgcrypt17=gcry_m and gcry_ver >= (1,7),
have_libgcrypt18=gcry_m and gcry_ver >= (1,8),