From: W.C.A. Wijngaards Date: Tue, 10 Nov 2020 14:31:20 +0000 (+0100) Subject: - Fix #343: Fail to build --with-libnghttp2 with error: 'SSIZE_MAX' X-Git-Tag: release-1.13.0rc1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5385e2e09444d60df1bcbd3a173846ba933b03df;p=thirdparty%2Funbound.git - Fix #343: Fail to build --with-libnghttp2 with error: 'SSIZE_MAX' undeclared. --- diff --git a/doc/Changelog b/doc/Changelog index c9e871011..47fcd9178 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,6 +1,8 @@ 10 November 2020: Wouter - Fix #341: fixing a possible memory leak. - Fix memory leak after fix for possible memory leak failure. + - Fix #343: Fail to build --with-libnghttp2 with error: 'SSIZE_MAX' + undeclared. 27 October 2020: Wouter - In man page note that tls-cert-bundle is read before permission diff --git a/services/listen_dnsport.c b/services/listen_dnsport.c index 15ee6a389..10a7aec60 100644 --- a/services/listen_dnsport.c +++ b/services/listen_dnsport.c @@ -43,6 +43,7 @@ # include #endif #include +#include #ifdef USE_TCP_FASTOPEN #include #endif