diff options
author | Justin Tobler <jltobler@gmail.com> | 2025-04-03 09:05:28 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2025-04-07 14:39:26 -0700 |
commit | 16fd6c85e4d036e789916e4d802b47a792fe496e (patch) | |
tree | 8e2a423df7f091b4c5508a388760474738c476d8 /help.c | |
parent | 683c54c999c301c2cd6f715c411407c413b1d84e (diff) |
help: include SHA implementation in version info
When the `--build-options` flag is used with git-version(1), additional
information about the built version of Git is printed. During build
time, different SHA implementations may be configured, but this
information is not included in the version info.
Add the SHA implementations Git is built with to the version info by
requiring each backend to define a SHA1_BACKEND or SHA256_BACKEND symbol
as appropriate and use the value in the printed build options.
Signed-off-by: Justin Tobler <jltobler@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'help.c')
-rw-r--r-- | help.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -9,6 +9,7 @@ #include "run-command.h" #include "levenshtein.h" #include "gettext.h" +#include "hash.h" #include "help.h" #include "command-list.h" #include "string-list.h" @@ -803,6 +804,8 @@ void get_version_info(struct strbuf *buf, int show_build_options) #elif defined ZLIB_VERSION strbuf_addf(buf, "zlib: %s\n", ZLIB_VERSION); #endif + strbuf_addf(buf, "SHA-1: %s\n", SHA1_BACKEND); + strbuf_addf(buf, "SHA-256: %s\n", SHA256_BACKEND); } } |