Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 643916 | Differences between
and this patch

Collapse All | Expand All

(-)a/contrib/minizip/Makefile.am (-1 / +1 lines)
Lines 22-28 Link Here
22
	zip.c \
22
	zip.c \
23
	${iowin32_src}
23
	${iowin32_src}
24
24
25
libminizip_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0 -lz
25
libminizip_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0 -lz -no-undefined
26
26
27
minizip_includedir = $(includedir)/minizip
27
minizip_includedir = $(includedir)/minizip
28
minizip_include_HEADERS = \
28
minizip_include_HEADERS = \
(-)a/contrib/minizip/ioapi.c (-1 / +1 lines)
Lines 14-20 Link Here
14
        #define _CRT_SECURE_NO_WARNINGS
14
        #define _CRT_SECURE_NO_WARNINGS
15
#endif
15
#endif
16
16
17
#if defined(__APPLE__) || defined(IOAPI_NO_64)
17
#if defined(__APPLE__) || defined(IOAPI_NO_64) || defined(__CYGWIN__)
18
// In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions
18
// In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions
19
#define FOPEN_FUNC(filename, mode) fopen(filename, mode)
19
#define FOPEN_FUNC(filename, mode) fopen(filename, mode)
20
#define FTELLO_FUNC(stream) ftello(stream)
20
#define FTELLO_FUNC(stream) ftello(stream)

Return to bug 643916