configure.ac: Don't require flex and bison if the parser is disabled.

Original commit message from CVS:
* configure.ac:
Don't require flex and bison if the parser is disabled.
This commit is contained in:
Michael Smith 2008-07-10 00:30:02 +00:00
parent 10caec03ce
commit 90154303ee
3 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2008-07-09 Michael Smith <msmith@songbirdnest.com>
* configure.ac:
Don't require flex and bison if the parser is disabled.
2008-07-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* libs/gst/controller/gstinterpolationcontrolsource.c:

2
common

@ -1 +1 @@
Subproject commit 593bb114c6f5c32b529aa6443be4c2d60d6484c7
Subproject commit 79ade7b9c9bf47eee491ceee4cf3ea116140ad35

View file

@ -271,8 +271,10 @@ if test x$PERL_PATH = xno; then
fi
dnl we require flex and bison for building the parser
AG_GST_BISON_CHECK
AG_GST_FLEX_CHECK
if test "x$GST_DISABLE_PARSE" != xyes; then
AG_GST_BISON_CHECK
AG_GST_FLEX_CHECK
fi
AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")