diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index fff58ccd24..c50de25146 100644 --- a/meson.build +++ b/meson.build @@ -1054,7 +1054,6 @@ if default_user_path != '' conf.set_quoted('DEFAULT_USER_PATH', default_user_path) endif - ##################################################################### threads = dependency('threads') @@ -1197,7 +1196,9 @@ conf.set10('HAVE_LIBFDISK', have) want_pwquality = get_option('pwquality') if want_pwquality != 'false' and not skip_deps - libpwquality = dependency('pwquality', required : want_pwquality == 'true') + libpwquality = dependency('pwquality', + version : '>= 1.4.1', + required : want_pwquality == 'true') have = libpwquality.found() else have = false @@ -4757,7 +4758,6 @@ foreach tuple : fuzz_sanitizers endif endforeach - ############################################################ if git.found() |