meson: specify correct libqrencode version in meson dep

This commit is contained in:
Luca Boccassi 2020-12-09 13:33:54 +01:00 committed by Lennart Poettering
parent b7fca1b059
commit a6c7811f0d
1 changed files with 1 additions and 0 deletions

View File

@ -1117,6 +1117,7 @@ conf.set10('HAVE_LIBIPTC', have)
want_qrencode = get_option('qrencode')
if want_qrencode != 'false' and not skip_deps
libqrencode = dependency('libqrencode',
version : '>= 4',
required : want_qrencode == 'true')
have = libqrencode.found()
else