diff options
author | Luca Boccassi <luca.boccassi@microsoft.com> | 2020-12-09 13:33:54 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-12-16 14:31:40 +0100 |
commit | 669107ae6808f531af2a2889807ba6a8a358ddb4 (patch) | |
tree | 02b4c3ae9d57710b92d7e1a0d88a161225b35e90 /meson.build | |
parent | c07dc6cedc6e6fbc28a0da3e8c8b12900423b409 (diff) | |
download | systemd-669107ae6808f531af2a2889807ba6a8a358ddb4.tar.gz |
meson: specify correct libqrencode version in meson dep
(cherry picked from commit a6c7811f0d3888e2fa545cd80d7815049b5cb084)
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 5eea875cb2..a947d8bfb6 100644 --- a/meson.build +++ b/meson.build @@ -1115,6 +1115,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 |