Sync zlib sources with GCC, upgrading to 1.2.10.
[deliverable/binutils-gdb.git] / zlib / contrib / minizip / configure.ac
CommitLineData
5ca28f79
L
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
de1ab01e 4AC_INIT([minizip], [1.2.10], [bugzilla.redhat.com])
5ca28f79
L
5AC_CONFIG_SRCDIR([minizip.c])
6AM_INIT_AUTOMAKE([foreign])
7LT_INIT
8
9AC_MSG_CHECKING([whether to build example programs])
10AC_ARG_ENABLE([demos], AC_HELP_STRING([--enable-demos], [build example programs]))
11AM_CONDITIONAL([COND_DEMOS], [test "$enable_demos" = yes])
12if test "$enable_demos" = yes
13then
14 AC_MSG_RESULT([yes])
15else
16 AC_MSG_RESULT([no])
17fi
18
19case "${host}" in
20 *-mingw* | mingw*)
21 WIN32="yes"
22 ;;
23 *)
24 ;;
25esac
26AM_CONDITIONAL([WIN32], [test "${WIN32}" = "yes"])
27
28
29AC_SUBST([HAVE_UNISTD_H], [0])
30AC_CHECK_HEADER([unistd.h], [HAVE_UNISTD_H=1], [])
31AC_CONFIG_FILES([Makefile minizip.pc])
32AC_OUTPUT
This page took 0.099652 seconds and 4 git commands to generate.