1dnl Process this file with autoconf to produce a configure script.
2dnl
3AC_INIT(initscan.c)
4AC_CONFIG_HEADER(config.h:conf.in)
5
6AC_LN_S
7AC_PROG_YACC
8AC_PROG_CC
9AC_PROG_RANLIB
10AC_PROG_INSTALL
11AC_PROG_MAKE_SET
12AC_CONST
13AC_TYPE_SIZE_T
14AC_HEADER_STDC
15AC_HAVE_HEADERS(string.h malloc.h sys/types.h)
16
17case "$YACC" in
18*bison*)
19  AC_ALLOCA
20  ;;
21esac
22
23AC_OUTPUT(Makefile,
24[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h])
25