mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2026-01-01 23:30:13 +01:00
Permit build without pam_wrapper
This commit is contained in:
parent
1be0810b69
commit
b04d4eb3e8
2 changed files with 7 additions and 2 deletions
|
|
@ -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!
|
||||
|
|
|
|||
|
|
@ -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'),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue