mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 21:56:57 +00:00
Check for $YACC, from Wei Shih in GitHub issue 3267.
This commit is contained in:
@ -267,6 +267,12 @@ if test "x$found_libevent" = xno; then
|
|||||||
AC_MSG_ERROR("libevent not found")
|
AC_MSG_ERROR("libevent not found")
|
||||||
fi
|
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
|
# Look for ncurses or curses. Try pkg-config first then directly for the
|
||||||
# library.
|
# library.
|
||||||
PKG_CHECK_MODULES(
|
PKG_CHECK_MODULES(
|
||||||
|
Reference in New Issue
Block a user