summaryrefslogtreecommitdiff
path: root/configure.in
blob: 8654711e4f252debe8da9bd2739dcf93cb53c661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dnl Process this file with autoconf to produce a configure script.
dnl
AC_INIT(initscan.c)

AC_LN_S
AC_PROG_YACC
AC_PROG_CC
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_CONST
AC_STDC_HEADERS
AC_HAVE_HEADERS(string.h)

case "$YACC" in
*bison*)
  AC_ALLOCA
  ;;
esac

AC_OUTPUT(Makefile)