diff options
author | Benjamin Otte <otte@gnome.org> | 2004-05-13 20:21:39 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-05-13 20:21:39 +0000 |
commit | 9a1f739d23932de679bf915cd989a4bea3ccbf9e (patch) | |
tree | 11160572501cf14d011ae9ddd7f823e3edce301e | |
parent | d3ffec4b9c5f55f90298ca41108b29a2b424800a (diff) | |
download | gst-plugins-bad-9a1f739d23932de679bf915cd989a4bea3ccbf9e.tar.gz gst-plugins-bad-9a1f739d23932de679bf915cd989a4bea3ccbf9e.tar.bz2 gst-plugins-bad-9a1f739d23932de679bf915cd989a4bea3ccbf9e.zip |
configure.ac: check for exact version of libvisual, it's not supposed to be
Original commit message from CVS:
* configure.ac:
check for exact version of libvisual, it's not supposed to be
API/ABI stable yet
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2004-05-13 Benjamin Otte <otte@gnome.org> + + * configure.ac: + check for exact version of libvisual, it's not supposed to be + API/ABI stable yet + 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de> * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push): diff --git a/configure.ac b/configure.ac index d2b78984..fb968f2d 100644 --- a/configure.ac +++ b/configure.ac @@ -1173,13 +1173,12 @@ GST_CHECK_FEATURE(LIBRFB, [librfb Remote Framebuffer], rfbsrc, [ dnl *** libvisual *** translit(dnm, m, l) AM_CONDITIONAL(USE_LIBVISUAL, true) GST_CHECK_FEATURE(LIBVISUAL, [libvisual visualization plugins], libvisual, [ - PKG_CHECK_MODULES(LIBVISUAL, libvisual, HAVE_LIBVISUAL="yes", HAVE_LIBVISUAL="no") + PKG_CHECK_MODULES(LIBVISUAL, libvisual = 0.1.1, HAVE_LIBVISUAL="yes", HAVE_LIBVISUAL="no") AC_SUBST(LIBVISUAL_CFLAGS) AC_SUBST(LIBVISUAL_LIBS) ]) dnl *** mad *** -dnl *** mad *** dnl FIXME: we could use header checks here as well IMO translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true) GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [ |