]> git.saurik.com Git - bison.git/blame_incremental - configure.in
Use VERSION symbol from automake for version number.
[bison.git] / configure.in
... / ...
CommitLineData
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(reduce.c)
3AM_INIT_AUTOMAKE(bison,1.25.90)
4AM_CONFIG_HEADER(config.h:config.hin)
5
6dnl Checks for programs.
7AC_PROG_CC
8AC_PROG_INSTALL
9AC_PROG_RANLIB
10
11AC_MINIX
12AC_ISC_POSIX
13
14dnl Checks for header files.
15AC_HEADER_STDC
16AC_CHECK_HEADERS(string.h stdlib.h memory.h)
17
18dnl Checks for typedefs, structures, and compiler characteristics.
19AC_C_CONST
20
21dnl Checks for library functions.
22AC_FUNC_ALLOCA
23
24AC_OUTPUT(Makefile)