On 6/8/21 4:22 AM, Paolo Bonzini wrote:
+pam = not_found
+if not get_option('auth_pam').auto() or have_system
+ pam = cc.find_library('pam', has_headers: ['security/pam_appl.h'],
The condition doesn't look right.
Why are we looking for pam if --disable-pam-auth?
Surely
if not get_option('auth_pam').disabled() and have_system
?
r~
