From: Wouter Wijngaards Date: Tue, 27 Nov 2018 13:35:29 +0000 (+0000) Subject: - Fix windows compile for new rrset roundrobin fix. X-Git-Tag: release-1.8.2rc1~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ca33c5208699401dbe64d59b5504745242700b91;p=thirdparty%2Funbound.git - Fix windows compile for new rrset roundrobin fix. git-svn-id: file:///svn/unbound/trunk@4986 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index b1cbc0ebc..0be937612 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -9,6 +9,7 @@ expired, and this is documented in the man page. - stat count SERVFAIL downstream auth-zone queries for expired zones. - Put new logos into windows installer. + - Fix windows compile for new rrset roundrobin fix. 26 November 2018: Wouter - Fix to not set GLOB_NOSORT so the unbound.conf include: files are diff --git a/util/data/msgencode.c b/util/data/msgencode.c index a706a2f2e..3d91680bd 100644 --- a/util/data/msgencode.c +++ b/util/data/msgencode.c @@ -50,6 +50,10 @@ #include "sldns/sbuffer.h" #include "services/localzone.h" +#ifdef HAVE_SYS_TYPES_H +# include +#endif + /** return code that means the function ran out of memory. negative so it does * not conflict with DNS rcodes. */ #define RETVAL_OUTMEM -2