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