summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-03-18 20:14:04 +0100
committerThomas Haller <thaller@redhat.com>2022-03-29 11:56:02 +0200
commit7e0a09418700af94bac441c1a438b17b2d8f428a (patch)
tree515dfbbf3d653e1fdc1afc8b721376c2b093acb4
parentccce9d394f3cff731c0c26b22e4de20de10d188e (diff)
downloadNetworkManager-7e0a09418700af94bac441c1a438b17b2d8f428a.tar.gz
build/meson: log enabled crypto libraries in summary
"autotools" also prints a similar output. It's useful to know which libraries were enabled. Because, we run unit test against all enabled libraries, even if they are actually used.
-rw-r--r--meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index aa782febba..f63cb22986 100644
--- a/meson.build
+++ b/meson.build
@@ -1094,7 +1094,9 @@ output += '\n'
output += ' code coverage: ' + get_option('b_coverage').to_string() + '\n'
output += ' LTO: ' + enable_lto.to_string() + '\n'
output += ' Linker garbage collection: ' + enable_ld_gc.to_string() + '\n'
-output += ' crypto: ' + crypto + '\n'
+output += ' crypto: ' + crypto + ' ('
+output += 'have-gnutls: ' + crypto_gnutls_dep.found().to_string() + ', '
+output += 'have-nss: ' + crypto_nss_dep.found().to_string() + ')\n'
output += ' sanitizers: ' + get_option('b_sanitize') + '\n'
output += ' Mozilla Public Suffix List: ' + enable_libpsl.to_string() + '\n'
output += ' vapi: ' + enable_vapi.to_string() + '\n'