freebsd-dev/crypto/heimdal/cf/krb-prog-yacc.m4

13 lines
309 B
Plaintext
Raw Normal View History

2004-04-03 21:22:55 +00:00
dnl $Id: krb-prog-yacc.m4,v 1.3.16.1 2004/04/01 07:27:34 joda Exp $
dnl
dnl
dnl We prefer byacc or yacc because they do not use `alloca'
dnl
2004-04-03 21:22:55 +00:00
AC_DEFUN([AC_KRB_PROG_YACC],
2001-02-13 16:46:19 +00:00
[AC_CHECK_PROGS(YACC, byacc yacc 'bison -y')
if test "$YACC" = ""; then
AC_MSG_WARN([yacc not found - some stuff will not build])
fi
])