From 7142fcfeed453401ee47b0e36b5018a58575c065 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sun, 18 Sep 2011 21:46:44 +0200 Subject: Always add large file support for windows --- zutil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zutil.h') diff --git a/zutil.h b/zutil.h index 258fa88..c199b20 100644 --- a/zutil.h +++ b/zutil.h @@ -160,7 +160,7 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ #endif /* provide prototypes for these when building zlib without LFS */ -#if !defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0 +#if !defined(_WIN32) && (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0) ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); #endif -- cgit v1.2.3-55-g6feb