Skip to content

Commit

Permalink
Fix contrib/minizip compilation in the MinGW environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
jk3064 authored and madler committed Mar 27, 2012
1 parent 11f4065 commit ba04838
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
11 changes: 9 additions & 2 deletions contrib/minizip/Makefile.am
Expand Up @@ -10,11 +10,17 @@ zlib_top_builddir = $(top_builddir)/../..
AM_CPPFLAGS = -I$(zlib_top_srcdir)
AM_LDFLAGS = -L$(zlib_top_builddir)

if WIN32
iowin32_src = iowin32.c
iowin32_h = iowin32.h
endif

libminizip_la_SOURCES = \
ioapi.c \
mztools.c \
unzip.c \
zip.c
zip.c \
${iowin32_src}

libminizip_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0 -lz

Expand All @@ -24,7 +30,8 @@ minizip_include_HEADERS = \
ioapi.h \
mztools.h \
unzip.h \
zip.h
zip.h \
${iowin32_h}

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = minizip.pc
Expand Down
10 changes: 10 additions & 0 deletions contrib/minizip/configure.ac
Expand Up @@ -16,6 +16,16 @@ else
AC_MSG_RESULT([no])
fi

case "${host}" in
*-mingw* | mingw*)
WIN32="yes"
;;
*)
;;
esac
AM_CONDITIONAL([WIN32], [test "${WIN32}" = "yes"])


AC_SUBST([HAVE_UNISTD_H], [0])
AC_CHECK_HEADER([unistd.h], [HAVE_UNISTD_H=1], [])
AC_CONFIG_FILES([Makefile minizip.pc])
Expand Down

0 comments on commit ba04838

Please sign in to comment.