Skip to content

Commit

Permalink
Check for $YACC, from Wei Shih in GitHub issue 3267.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicm committed Aug 2, 2022
1 parent 9d9445a commit 00812c9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions configure.ac
Expand Up @@ -267,6 +267,12 @@ if test "x$found_libevent" = xno; then
AC_MSG_ERROR("libevent not found")
fi

# Look for yacc.
AC_CHECK_PROG(found_yacc, $YACC, yes, no)
if test "x$found_yacc" = xno; then
AC_MSG_ERROR("yacc not found")
fi

# Look for ncurses or curses. Try pkg-config first then directly for the
# library.
PKG_CHECK_MODULES(
Expand Down

0 comments on commit 00812c9

Please sign in to comment.