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