blob: 2befc77ef8367a79bd8034d93864b450007142ab [file] [log] [blame]
Adam Tkaca6d64cb2008-03-27 18:13:28 +00001# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.61])
5AC_INIT([zlib], [1.1.4])
6AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2])
7
8# Checks for programs.
9AC_PROG_CC
10AC_PROG_LIBTOOL
11
12# Checks for header files.
13AC_CHECK_HEADERS([unistd.h errno.h])
14
15# Checks for library functions.
16AC_FUNC_MMAP
17
18AC_CONFIG_HEADERS([config.h])
19AC_CONFIG_FILES([Makefile])
20AC_OUTPUT