mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
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:
parent
10caec03ce
commit
90154303ee
3 changed files with 10 additions and 3 deletions
|
@ -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
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 593bb114c6f5c32b529aa6443be4c2d60d6484c7
|
||||
Subproject commit 79ade7b9c9bf47eee491ceee4cf3ea116140ad35
|
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue