blob: e7b9a4b85ae581942291d2f6c9a0345e6f0ab51e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.3)dnl
AC_INIT(mmalloc.c)
CC=${CC-cc}
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_FUNC_MMAP
AC_HEADER_STDC
AC_OUTPUT(Makefile)
|