From: Ilya Leoshkevich Date: Tue, 26 Mar 2019 12:30:51 +0000 (+0100) Subject: Fix infcover.c build X-Git-Tag: 1.9.9-b1~489 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4230228b86594f9e3561e444421c4df95f3638c7;p=thirdparty%2Fzlib-ng.git Fix infcover.c build infcover.c includes inflate.h, which makes use of PREFIX3 macro. This macro is defined in zbuild.h, which is not included. --- diff --git a/test/infcover.c b/test/infcover.c index 9f2d33dc..2b8ff974 100644 --- a/test/infcover.c +++ b/test/infcover.c @@ -14,6 +14,7 @@ /* get definition of internal structure so we can mess with it (see pull()), and so we can call inflate_trees() (see cover5()) */ #define ZLIB_INTERNAL +#include "zbuild.h" #include "inftrees.h" #include "inflate.h"