diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 4b12b26..9f61fc7 100644 --- a/configure.ac +++ b/configure.ac @@ -59,6 +59,7 @@ dnl *** required versions of GStreamer stuff *** GST_REQ=1.3.0.1 GSTPB_REQ=1.3.0.1 GSTPG_REQ=1.3.0.1 +GSTPD_REQ=1.3.0.1 dnl *** autotools stuff **** @@ -176,6 +177,11 @@ GSTPG_PLUGINS_DIR=`$PKG_CONFIG gstreamer-plugins-good-$GST_API_VERSION --variabl AC_SUBST(GSTPG_PLUGINS_DIR) AC_MSG_NOTICE(Using GStreamer Good Plugins in $GSTPG_PLUGINS_DIR) +AG_GST_CHECK_GST_PLUGINS_BAD($GST_API_VERSION, [$GSTPD_REQ], [yes]) +GSTPD_PLUGINS_DIR=`$PKG_CONFIG gstreamer-plugins-bad-$GST_API_VERSION --variable pluginsdir` +AC_SUBST(GSTPD_PLUGINS_DIR) +AC_MSG_NOTICE(Using GStreamer Bad Plugins in $GSTPD_PLUGINS_DIR) + AG_GST_CHECK_GST_CHECK($GST_API_VERSION, [$GST_REQ], no) AM_CONDITIONAL(HAVE_CHECK, test "x$HAVE_GST_CHECK" = "xyes") |