blob: 66a7721c91e6939d066261695e363bdd2fa3cb88 [file] [log] [blame]
Adam Tkacae2c6452008-03-20 11:48:41 +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 libraries.
13
14# Checks for header files.
15AC_HEADER_STDC
16AC_CHECK_HEADERS([fcntl.h malloc.h stddef.h stdlib.h string.h unistd.h errno.h])
17
18# Checks for typedefs, structures, and compiler characteristics.
19AC_C_CONST
20AC_TYPE_OFF_T
21
22# Checks for library functions.
23AC_FUNC_ERROR_AT_LINE
24AC_FUNC_MMAP
25AC_FUNC_VPRINTF
26AC_CHECK_FUNCS([munmap strerror])
27
28AC_CONFIG_HEADERS([config.h])
29AC_CONFIG_FILES([Makefile])
30AC_OUTPUT