mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug TD-42
- TD-42 Cannot compile taskd - GNUTLS_VERSION undefined in diag.cpp (thanks to Michele Vetturi).
This commit is contained in:
parent
26260ec44c
commit
ed8741e242
3 changed files with 7 additions and 0 deletions
1
AUTHORS
1
AUTHORS
|
@ -200,3 +200,4 @@ suggestions:
|
||||||
Hector Arciga
|
Hector Arciga
|
||||||
Jan Kunder
|
Jan Kunder
|
||||||
jck
|
jck
|
||||||
|
Michele Vetturi
|
||||||
|
|
|
@ -31,6 +31,8 @@ Features
|
||||||
- New themes: dark-default-16.theme, dark-gray-blue-256.theme
|
- New themes: dark-default-16.theme, dark-gray-blue-256.theme
|
||||||
|
|
||||||
Bugs
|
Bugs
|
||||||
|
- TD-42 Cannot compile taskd - GNUTLS_VERSION undefined in diag.cpp (thanks
|
||||||
|
to Michele Vetturi).
|
||||||
- #1511 sync init crashes if client certification file is empty or invalid
|
- #1511 sync init crashes if client certification file is empty or invalid
|
||||||
(thanks to Marton Suranyi).
|
(thanks to Marton Suranyi).
|
||||||
- #1508 Show command highlight configuration (thanks to Nicolas Appriou).
|
- #1508 Show command highlight configuration (thanks to Nicolas Appriou).
|
||||||
|
|
|
@ -165,7 +165,11 @@ int CmdDiagnostics::execute (std::string& output)
|
||||||
|
|
||||||
out << " libgnutls: "
|
out << " libgnutls: "
|
||||||
#ifdef HAVE_LIBGNUTLS
|
#ifdef HAVE_LIBGNUTLS
|
||||||
|
#ifdef GNUTLS_VERSION
|
||||||
<< GNUTLS_VERSION
|
<< GNUTLS_VERSION
|
||||||
|
#elif LIBGNUTLS_VERSION
|
||||||
|
<< LIBGNUTLS_VERSION
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
<< "n/a"
|
<< "n/a"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue