allow extrn symbols to be defined by the unit itself (part II)
[xorcyst.git] / configure.in
blob65ec93a085e14e18210d5996a7711eb4740093aa
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(parser.y)
4 AM_CONFIG_HEADER(config.h)
5 AM_INIT_AUTOMAKE(xorcyst, 1.5.2)
7 AC_TYPE_SIZE_T
8 AC_C_CONST
10 dnl Checks for programs.
11 AC_PROG_AWK
12 AC_PROG_CC
13 AC_PROG_YACC
14 AM_PROG_LEX
15 AC_PROG_INSTALL
16 AC_PROG_LN_S
18 dnl Checks for libraries.
20 dnl Checks for header files.
21 AC_HEADER_STDC
22 AC_CHECK_HEADERS(stddef.h)
24 dnl Checks for typedefs, structures, and compiler characteristics.
26 dnl Checks for library functions.
27 AC_FUNC_VPRINTF
28 AC_FUNC_MALLOC
29 AC_FUNC_REALLOC
30 AC_CHECK_FUNCS(strtol)
31 AC_CHECK_FUNCS(strchr)
32 AC_CHECK_FUNCS(strrchr)
34 AC_OUTPUT(Makefile)