diff options
author | Patrick Steinhardt <ps@pks.im> | 2024-12-30 15:24:10 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-12-30 15:50:49 +0100 |
commit | 6a0ee54f9a3ebf667e86f7110c36b2240df96166 (patch) | |
tree | 5d4602fb217adc8e50f0b9eb0d737c9e6412472e | |
parent | meson: wire up unsafe SHA1 backend (diff) | |
download | git-6a0ee54f9a3ebf667e86f7110c36b2240df96166.tar.xz git-6a0ee54f9a3ebf667e86f7110c36b2240df96166.zip |
meson: provide a summary of configured backends
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>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | meson.build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meson.build b/meson.build index dc82c23cb4..7361eb2eaa 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') |