Files
heimdal/cf/krb-prog-yacc.m4
Assar Westerlund 6ef7aee6a0 AC_MSG_WARNING should be AC_MSG_WARN
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8080 ec53bebd-3082-4978-b11e-865c3cabbd6b
2000-03-28 12:12:23 +00:00

13 lines
248 B
Plaintext

dnl $Id$
dnl
dnl
dnl We prefer byacc or yacc because they do not use `alloca'
dnl
AC_DEFUN(AC_KRB_PROG_YACC,
[AC_CHECK_PROGS(YACC, byacc yacc 'bison -y')
if test "$YACC" = ""; then
AC_MSG_WARN([yacc not found - some stuff will not build])
fi
])