mirror of https://github.com/madler/zlib.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
380 B
12 lines
380 B
# -*- Autoconf -*- |
|
# Process this file with autoconf to produce a configure script. |
|
|
|
AC_INIT([minizip], [1.2.6], [bugzilla.redhat.com]) |
|
AC_CONFIG_SRCDIR([minizip.c]) |
|
AM_INIT_AUTOMAKE([foreign]) |
|
LT_INIT |
|
|
|
AC_SUBST([HAVE_UNISTD_H], [0]) |
|
AC_CHECK_HEADER([unistd.h], [HAVE_UNISTD_H=1], []) |
|
AC_CONFIG_FILES([Makefile minizip.pc]) |
|
AC_OUTPUT
|
|
|