Bug TD-45

- TD-45 Fix preprocessor define.

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Jochen Sprickerhof 2014-03-06 18:26:39 -05:00 committed by Paul Beckingham
parent 39efcf11bd
commit 4ae8431f96
4 changed files with 3 additions and 2 deletions

View file

@ -100,6 +100,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
Natanael Copa
Marton Suranyi
Nicolas Appriou
Jochen Sprickerhof
Thanks to the following, who submitted detailed bug reports and excellent
suggestions:

View file

@ -33,6 +33,7 @@ Features
Bugs
- TD-42 Cannot compile taskd - GNUTLS_VERSION undefined in diag.cpp (thanks
to Michele Vetturi).
- TD-45 Fix preprocessor define (thanks to Jochen Sprickerhof).
- TW-1282 incorrect URLs in man task-sync (thanks to Jeremiah Marks).
- #1511 sync init crashes if client certification file is empty or invalid
(thanks to Marton Suranyi).

View file

@ -1080,7 +1080,6 @@ void TDB2::show_diff (
<< view.render ()
<< "\n";
}
}
////////////////////////////////////////////////////////////////////////////////

View file

@ -167,7 +167,7 @@ int CmdDiagnostics::execute (std::string& output)
#ifdef HAVE_LIBGNUTLS
#ifdef GNUTLS_VERSION
<< GNUTLS_VERSION
#elif LIBGNUTLS_VERSION
#elif defined LIBGNUTLS_VERSION
<< LIBGNUTLS_VERSION
#endif
#else