From d07e81acae5a16a6250c0d7f6b1bf6b7354a5c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Tue, 2 Mar 2021 15:40:08 +0100 Subject: [PATCH] meson: Consider the 'pam' option in the summary We may show that we build it even when it's disabled but available in the system --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6b63c01..01c031b 100644 --- a/meson.build +++ b/meson.build @@ -189,7 +189,7 @@ if get_option('pam') output += ' PAM module directory: ' + pam_modules_dir endif output += '\nOptional features:\n' -output += ' PAM module: ' + pam_dep.found().to_string() +output += ' PAM module: ' + (pam_dep.found() and get_option('pam')).to_string() output += ' Manuals: ' + get_option('man').to_string() output += ' GTK Doc: ' + get_option('gtk_doc').to_string() output += ' XML Linter ' + xmllint.found().to_string()