68bfaddafe
Sigh. It's one of those days.
15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
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_CHECK_HEADERS(stddef.h)
|
|
|
|
AC_OUTPUT(Makefile)
|