diff mbox series

[10/10] meson: provide a summary of configured backends

Message ID 20241230-pks-meson-sha1-unsafe-v1-10-efb276e171f5@pks.im (mailing list archive)
State Accepted
Commit 6a0ee54f9a3ebf667e86f7110c36b2240df96166
Headers show
Series Fix segfaults when using the unsafe SHA1 backend | expand

Commit Message

Patrick Steinhardt Dec. 30, 2024, 2:24 p.m. UTC
There are a couple of backends from which the user can choose for HTTPS,
SHA1, its unsafe variant as well as SHA256. Provide a summary of the
configured values to make these more discoverable.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
---
 meson.build | 7 +++++++
 1 file changed, 7 insertions(+)
diff mbox series

Patch

diff --git a/meson.build b/meson.build
index dc82c23cb4f07646a9a7bb96fefcf832f9840975..7361eb2eaad422e7a6c6ed95d275615836c21cdb 100644
--- a/meson.build
+++ b/meson.build
@@ -1943,3 +1943,10 @@  summary({
   'perl': perl_features_enabled,
   'python': python.found(),
 }, section: 'Auto-detected features')
+
+summary({
+  'https': https_backend,
+  'sha1': sha1_backend,
+  'sha1_unsafe': sha1_unsafe_backend,
+  'sha256': sha256_backend,
+}, section: 'Backends')