Explorar el Código

Merge pull request #1634 from ilovezfs/older-zlib

unzip: fix build with older zlib
Kim Kulling hace 7 años
padre
commit
6a1d2560ac
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      contrib/unzip/unzip.c

+ 4 - 0
contrib/unzip/unzip.c

@@ -41,6 +41,10 @@ woven in by Terry Thorsen 1/2003.
 #include "zlib.h"
 #include "unzip.h"
 
+#if ZLIB_VERNUM < 0x1270
+typedef unsigned long z_crc_t;
+#endif
+
 #ifdef STDC
 #  include <stddef.h>
 #  include <string.h>