File: krb-prog-yacc.m4

package info (click to toggle)
heimdal 7.5.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 42,300 kB
  • sloc: ansic: 355,050; sh: 11,962; makefile: 4,357; yacc: 1,786; perl: 1,572; lex: 732; python: 722; java: 119; awk: 41
file content (12 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
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
])