]> git.saurik.com Git - bison.git/blob - configure.in
Update to Autoconf v2 macro names.
[bison.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(reduce.c)
3
4 dnl Checks for programs.
5 AC_PROG_CC
6 AC_PROG_INSTALL
7
8 AC_MINIX
9 AC_ISC_POSIX
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
22 AC_OUTPUT(Makefile)