diff options
author | Christian Schaller <uraeus@gnome.org> | 2005-05-06 18:00:56 +0000 |
---|---|---|
committer | Christian Schaller <uraeus@gnome.org> | 2005-05-06 18:00:56 +0000 |
commit | c566d1d5d121d95b7cdabda8f4bcaca2f5401a0f (patch) | |
tree | 5bfde4e1744181da2828cb833facabaede1b943b | |
parent | 4d3647265634c63bfb1f901c4c3d537e6a342816 (diff) | |
download | gst-plugins-bad-c566d1d5d121d95b7cdabda8f4bcaca2f5401a0f.tar.gz gst-plugins-bad-c566d1d5d121d95b7cdabda8f4bcaca2f5401a0f.tar.bz2 gst-plugins-bad-c566d1d5d121d95b7cdabda8f4bcaca2f5401a0f.zip |
add gst-plugins-libs
Original commit message from CVS:
add gst-plugins-libs
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 10 |
2 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2005-05-06 Christian Schaller <uraeus@gnome.org> + + * configure.ac: add gst-plugins-libs + 2005-05-06 Wim Taymans <wim@fluendo.com> * configure.ac: diff --git a/configure.ac b/configure.ac index 9ce7b321..d3d97381 100644 --- a/configure.ac +++ b/configure.ac @@ -253,6 +253,16 @@ fi AC_SUBST(GST_INTERFACES_LIBS) +dnl check for gstreamer-interfaces; uinstalled is selected preferentially +PKG_CHECK_MODULES(GST_PLUGINS_LIBS, gstreamer-libs-$GST_MAJORMINOR >= $GST_REQ, + HAVE_GST_PLUGINS="yes", HAVE_GST_PLUGINS="no") + +if test "x$HAVE_GST_PLUGINS" = "xno"; then + AC_MSG_ERROR(no GStreamer Plugins Libs found) +fi + +AC_SUBST(GST_PLUGINS_LIBS) + dnl Determine endianness AC_C_BIGENDIAN |