warn we do not find any yacc

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8046 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2000-03-16 05:47:09 +00:00
parent be9014cb54
commit 1dccdee33b

View File

@@ -5,4 +5,8 @@ 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')])
[AC_CHECK_PROGS(YACC, byacc yacc 'bison -y')
if test "$YACC" = ""; then
AC_MSG_WARNING([yacc not found - some stuff will not build])
fi
])