(rzlib) Compiles on Xcode 3.2.6 as well now

This commit is contained in:
twinaphex 2014-01-11 10:05:44 +01:00
parent a59faab855
commit 3be412c58f
2 changed files with 12 additions and 4 deletions

12
deps/rzlib/gzguts.h vendored
View File

@ -132,10 +132,14 @@
/* provide prototypes for these when building zlib without LFS */
#if !defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0
ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
#ifndef z_off64_t
#define z_off64_t z_off_t
#endif
gzFile gzopen64 OF((const char *, const char *));
z_off64_t gzseek64 OF((gzFile, z_off64_t, int));
z_off64_t gztell64 OF((gzFile));
z_off64_t gzoffset64 OF((gzFile));
#endif
/* default memLevel */

View File

@ -91,6 +91,10 @@
# endif
#endif
#ifndef Z_TREES
#define Z_TREES 6
#endif
/* function prototypes */
local void fixedtables OF((struct inflate_state FAR *state));
local int updatewindow OF((z_streamp strm, const unsigned char FAR *end,