diff options
author | Terin Stock <terinjokes@gmail.com> | 2022-04-24 18:59:56 -0700 |
---|---|---|
committer | Terin Stock <terinjokes@gmail.com> | 2022-04-24 18:59:56 -0700 |
commit | 00bfbfb0db1fcf863e34d946e324ebc5cdb8d1ea (patch) | |
tree | 9b5c04b019bf15f59f799d5a366e464fe9b4cc4f | |
parent | Makefile: add support for SQLite3 (diff) | |
download | tgif-00bfbfb0db1fcf863e34d946e324ebc5cdb8d1ea.tar.xz |
cmd/version: include fork and sqlite versions
To add in identification and debuggability, this patch modifies the
version of git to add the "tgif" designation to the version string as
well as including the SQLite header and library versions.
-rwxr-xr-x | GIT-VERSION-GEN | 2 | ||||
-rw-r--r-- | help.c | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index fdcebd2c58..4a99958b45 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -26,7 +26,7 @@ else VN="$DEF_VER" fi -VN=$(expr "$VN" : v*'\(.*\)') +VN=$(expr "$VN" : v*'\(.*\)')"-tgif" if test -r $GVF then @@ -14,6 +14,10 @@ #include "prompt.h" #include "fsmonitor-ipc.h" +#if defined(USE_SQLITE) +#include <sqlite3.h> +#endif + struct category_description { uint32_t category; const char *desc; @@ -718,6 +722,11 @@ void get_version_info(struct strbuf *buf, int show_build_options) if (fsmonitor_ipc__is_supported()) strbuf_addstr(buf, "feature: fsmonitor--daemon\n"); + +#if defined(USE_SQLITE) + strbuf_addf(buf, "sqlite-headers: %s\n", SQLITE_VERSION); + strbuf_addf(buf, "sqlite-library: %s\n", sqlite3_libversion()); +#endif } } |