mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
We require bison somewhere, so we should check for that in configure
Original commit message from CVS: We require bison somewhere, so we should check for that in configure
This commit is contained in:
parent
ce82be12c7
commit
f5db767966
1 changed files with 6 additions and 0 deletions
|
@ -57,6 +57,12 @@ fi
|
|||
GST_DOC()
|
||||
GST_ARCH()
|
||||
|
||||
dnl we require bison for building of some of the marshal files
|
||||
AC_PATH_PROG(BISON_PATH, bison, no)
|
||||
if test x$BISON_PATH = xno; then
|
||||
AC_MSG_ERROR(Could not find bison)
|
||||
fi
|
||||
|
||||
dnl
|
||||
dnl We should really use AC_SYS_LARGEFILE, but the problem is
|
||||
dnl many of the plugins don't include "config.h". To assure
|
||||
|
|
Loading…
Reference in a new issue