diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2023-02-12 13:27:15 +0100 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2023-02-14 16:52:35 -0800 |
commit | 4de50f49a1a20e59b2a97743ac80b85920e94ac5 (patch) | |
tree | 3e7ccd2aa8ab9631b591ef73d387d9145c92c2b8 /src | |
parent | b29c0ec66d18209e568c7546ec46245724850038 (diff) | |
download | fork-ledger-4de50f49a1a20e59b2a97743ac80b85920e94ac5.tar.gz fork-ledger-4de50f49a1a20e59b2a97743ac80b85920e94ac5.tar.bz2 fork-ledger-4de50f49a1a20e59b2a97743ac80b85920e94ac5.zip |
Add info about compile features to --version
Diffstat (limited to 'src')
-rw-r--r-- | src/global.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/global.h b/src/global.h index 036765b8..5a29796d 100644 --- a/src/global.h +++ b/src/global.h @@ -128,6 +128,15 @@ public: if (Ledger_VERSION_DATE != 0) out << '-' << Ledger_VERSION_DATE; out << _(", the command-line accounting tool"); + out << _("\nwith"); +#if !HAVE_GPGME + out << _("out"); +#endif + out << _(" support for gpg encrypted journals and with"); +#if !HAVE_BOOST_PYTHON + out <<_("out"); +#endif + out << _(" Python support"); out << _("\n\nCopyright (c) 2003-2023, John Wiegley. All rights reserved.\n\n\ This program is made available under the terms of the BSD Public License.\n\ |