mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
TLSServer/Client need to include <errno.h> on NetBSD
Same fix applied as per Solaris. See TD-55 and
c60ec0b6ee
This commit is contained in:
parent
0313057446
commit
7c6618e50a
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
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
|
- TD-55 TLSServer/Client need to include <errno.h> on Solaris (thanks to Tatjana
|
||||||
Heuser).
|
Heuser). Also applied to NetBSD.
|
||||||
- TD-56 File.cpp needs to include <string.h> on Solaris (thanks to Tatjana
|
- TD-56 File.cpp needs to include <string.h> on Solaris (thanks to Tatjana
|
||||||
Heuѕer).
|
Heuѕer).
|
||||||
- TD-57 taskdctl script assumes /bin/sh is /bin/bash (thanks to Tatjana Heuser).
|
- TD-57 taskdctl script assumes /bin/sh is /bin/bash (thanks to Tatjana Heuser).
|
||||||
|
|
|
@ -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>
|
||||||
#if (defined OPENBSD || defined SOLARIS)
|
#if (defined OPENBSD || defined SOLARIS || defined NETBSD)
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#else
|
#else
|
||||||
#include <sys/errno.h>
|
#include <sys/errno.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue