mirror of
https://github.com/curl/curl.git
synced 2026-07-30 16:18:02 +03:00
if not yacc or bison is found, check if we *really* need it, and if we do
we bail out!
This commit is contained in:
parent
7729c63be0
commit
de37308722
1 changed files with 14 additions and 0 deletions
14
configure.ac
14
configure.ac
|
|
@ -1144,6 +1144,20 @@ fi
|
|||
|
||||
AC_PROG_YACC
|
||||
|
||||
if test -z "$YACC"
|
||||
then
|
||||
AC_MSG_CHECKING([if OK to build without bison/yacc])
|
||||
dnl no yacc is a big deal if we have no pre-fixed getdate.y
|
||||
if test -r "$srcdir/lib/getdate.c"
|
||||
then
|
||||
dnl all is well, we don't have to generate it!
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
AC_MSG_RESULT(no)
|
||||
AC_MSG_ERROR([no yacc or bison found, can't build libcurl!])
|
||||
fi
|
||||
fi
|
||||
|
||||
dnl *************************************************************************
|
||||
dnl If the manual variable still is set, then we go with providing a built-in
|
||||
dnl manual
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue