make sure string is 0-terminated
[xorcyst.git] / configure.in
blob821b1532c4432a8056eab66d51754a5215ded648
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.1)
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)