Permit build without pam_wrapper

This commit is contained in:
Fabio Bas 2022-05-24 16:00:02 +02:00
parent 1be0810b69
commit b04d4eb3e8
2 changed files with 7 additions and 2 deletions

View file

@ -137,7 +137,10 @@ endif
polkit_policy_directory = polkit_gobject_dep.get_pkgconfig_variable('policydir')
# Tests dependencies
pam_wrapper_dep = dependency('pam_wrapper', required: get_option('pam'))
pam_wrapper_dep = dependency('pam_wrapper', required: false)
if get_option('pam') and not pam_wrapper_dep.found()
warning('Dependency "pam_wrapper" required by test suite not found')
endif
xmllint = find_program('xmllint', required: false)
python3 = find_program('python3') # No meson without it!

View file

@ -12,7 +12,9 @@ if address_sanitizer
preloaded_libs += 'asan'
endif
preloaded_libs += 'pam_wrapper'
if pam_wrapper_dep.found()
preloaded_libs += 'pam_wrapper'
endif
foreach libname: preloaded_libs
lib = run_command(meson.get_compiler('c'),