check for optional gstreamer plugins (if you don't have it, you'll decode nothing :)). Also, i forgot to say that there's a small api breakage

SVN revision: 17104
This commit is contained in:
doursse 2005-10-02 08:07:56 +00:00 committed by doursse
parent bad4d6e848
commit 4f5083d3b1
1 changed files with 5 additions and 0 deletions

View File

@ -150,6 +150,10 @@ PKG_CHECK_MODULES(GST, \
gstreamer-$GST_MAJORMINOR >= $GST_REQS,
HAVE_GSTREAMER="yes", HAVE_GSTREAMER="no")
PKG_CHECK_MODULES(GSTPLUG, \
gstreamer-plugins-$GST_MAJORMINOR >= $GSTPLUG_REQS,
HAVE_GSTPLUG="yes", HAVE_GSTPLUG="no")
AC_SUBST(GST_CFLAGS)
AC_SUBST(GST_LIBS)
@ -196,6 +200,7 @@ echo
echo " Modules:"
echo " Xine...............: $HAVE_XINE"
echo " Gstreamer..........: $HAVE_GSTREAMER"
echo " Gsteamer plugins...: $HAVE_GSTPLUG"
echo
echo " Compilation..........: make"
echo