- TD-55 TLSServer/Client need to include <errno.h> on Solaris (thanks to Tatjana
        Heuser).
This commit is contained in:
Paul Beckingham 2014-05-23 16:23:51 -04:00
parent cdf9f3c04e
commit c60ec0b6ee
3 changed files with 4 additions and 1 deletions

View file

@ -105,6 +105,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
David Binderman David Binderman
atomicules atomicules
catern catern
Tatjana Heuser
Thanks to the following, who submitted detailed bug reports and excellent Thanks to the following, who submitted detailed bug reports and excellent
suggestions: suggestions:

View file

@ -3,6 +3,8 @@
- TD-42 Cannot compile taskd - GNUTLS_VERSION undefined in diag.cpp (thanks - TD-42 Cannot compile taskd - GNUTLS_VERSION undefined in diag.cpp (thanks
to Michele Vetturi). to Michele Vetturi).
- TD-45 Fix preprocessor define (thanks to Jochen Sprickerhof). - TD-45 Fix preprocessor define (thanks to Jochen Sprickerhof).
- TD-55 TLSServer/Client need to include <errno.h> on Solaris (thanks to Tatjana
Heuser).
- #1255 l10n translation utility improvements (thanks to Renato Alves). - #1255 l10n translation utility improvements (thanks to Renato Alves).
- #1473 Make TASK_RCDIR customizable (thanks to Elias Probst). - #1473 Make TASK_RCDIR customizable (thanks to Elias Probst).
- #1486 Truncated sentence in task-sync(5) manpage (thanks to Jakub Wilk). - #1486 Truncated sentence in task-sync(5) manpage (thanks to Jakub Wilk).

View file

@ -36,7 +36,7 @@
#include <string.h> #include <string.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#ifdef OPENBSD #if (defined OPENBSD || defined SOLARIS)
#include <errno.h> #include <errno.h>
#else #else
#include <sys/errno.h> #include <sys/errno.h>