diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2005-02-21 23:41:23 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2005-02-21 23:41:23 +0000 |
commit | 3b9710a1da22b24e4dd5046fe9291beb60fd3cc5 (patch) | |
tree | 0e720356aec6378c7427155140a6c76a507ef98d /configure.ac | |
parent | 34e90421fe00b1744ccd06424220442afcda040c (diff) | |
download | gst-plugins-bad-3b9710a1da22b24e4dd5046fe9291beb60fd3cc5.tar.gz gst-plugins-bad-3b9710a1da22b24e4dd5046fe9291beb60fd3cc5.tar.bz2 gst-plugins-bad-3b9710a1da22b24e4dd5046fe9291beb60fd3cc5.zip |
Since dirac 0.5.0 the framerate in dirac is expressed as a rational number. Fix build and up requirement to 0.5.0, an...
Original commit message from CVS:
Since dirac 0.5.0 the framerate in dirac is expressed as a rational number. Fix build and up requirement to 0.5.0, and also pass parameters to gst_diracdec_link in the right order. (fixes #167959)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 4c1d31e3..4cd6b5b3 100644 --- a/configure.ac +++ b/configure.ac @@ -887,9 +887,9 @@ dnl AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no) dnl *** dirac *** translit(dnm, m, l) AM_CONDITIONAL(USE_DIRAC, true) GST_CHECK_FEATURE(DIRAC, [dirac plug-ins], dirac, [ - PKG_CHECK_MODULES(DIRAC, dirac-pic >= 0.4, HAVE_DIRAC="yes", HAVE_DIRAC="no") + PKG_CHECK_MODULES(DIRAC, dirac-pic >= 0.5.0, HAVE_DIRAC="yes", HAVE_DIRAC="no") if test x$HAVE_DIRAC = xno ; then - PKG_CHECK_MODULES(DIRAC, dirac >= 0.4, HAVE_DIRAC="yes", HAVE_DIRAC="no") + PKG_CHECK_MODULES(DIRAC, dirac >= 0.5.0, HAVE_DIRAC="yes", HAVE_DIRAC="no") fi AC_SUBST(DIRAC_CFLAGS) AC_SUBST(DIRAC_LIBS) |