]>
Commit | Line | Data |
---|---|---|
7c4399ed NF |
1 | dnl Process this file with autoconf to produce a configure script. |
2 | AC_INIT(reduce.c) | |
f2939cd6 DM |
3 | |
4 | dnl Checks for programs. | |
7c4399ed | 5 | AC_PROG_CC |
7c4399ed | 6 | AC_PROG_INSTALL |
f2939cd6 | 7 | |
7c4399ed NF |
8 | AC_MINIX |
9 | AC_ISC_POSIX | |
f2939cd6 DM |
10 | |
11 | dnl Checks for header files. | |
12 | AC_HEADER_STDC | |
13 | AC_CHECK_HEADERS(string.h stdlib.h memory.h) | |
14 | ||
15 | dnl Checks for typedefs, structures, and compiler characteristics. | |
16 | AC_C_CONST | |
17 | ||
18 | dnl Checks for library functions. | |
19 | AC_FUNC_ALLOCA | |
20 | AC_CHECK_FUNCS(strerror) | |
21 | ||
7c4399ed | 22 | AC_OUTPUT(Makefile) |