mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
TD-55
- TD-55 TLSServer/Client need to include <errno.h> on Solaris (thanks to Tatjana Heuser).
This commit is contained in:
parent
cdf9f3c04e
commit
c60ec0b6ee
3 changed files with 4 additions and 1 deletions
1
AUTHORS
1
AUTHORS
|
@ -105,6 +105,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
|
|||
David Binderman
|
||||
atomicules
|
||||
catern
|
||||
Tatjana Heuser
|
||||
|
||||
Thanks to the following, who submitted detailed bug reports and excellent
|
||||
suggestions:
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
- TD-42 Cannot compile taskd - GNUTLS_VERSION undefined in diag.cpp (thanks
|
||||
to Michele Vetturi).
|
||||
- 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).
|
||||
- #1473 Make TASK_RCDIR customizable (thanks to Elias Probst).
|
||||
- #1486 Truncated sentence in task-sync(5) manpage (thanks to Jakub Wilk).
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
#include <string.h>
|
||||
#include <sys/socket.h>
|
||||
#include <arpa/inet.h>
|
||||
#ifdef OPENBSD
|
||||
#if (defined OPENBSD || defined SOLARIS)
|
||||
#include <errno.h>
|
||||
#else
|
||||
#include <sys/errno.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue