Hey Chris,
This is a known issue - I had forgotten to get the patch into the mainline before the release. It's specifically related to old versions of gcc. Apply the following patch - that should resolve it.
-Aaron
diff --git a/src/zlink.c b/src/zlink.c index f724125..7d46ff7 100644 --- a/src/zlink.c +++ b/src/zlink.c @@ -26,8 +26,8 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <zlib.h> #include "memcount.h" +#include <zlib.h>
#define COMPRESSION_LEVEL 3 /* 0 to 9, 0 = none */ #define ZIP_MIN_BLOCK 1024 /* smallest block to compress */