diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-06-30 13:19:36 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-06-30 13:19:36 +0000 |
commit | a9c26bea9f6cc0427eeb49f9fed7d3fa554bc06d (patch) | |
tree | 47e426eb016191e7782b221f0642674529818626 | |
parent | c412fa00a70e4b2b1e20ae33268b6b0f3955939b (diff) | |
download | gst-plugins-bad-a9c26bea9f6cc0427eeb49f9fed7d3fa554bc06d.tar.gz gst-plugins-bad-a9c26bea9f6cc0427eeb49f9fed7d3fa554bc06d.tar.bz2 gst-plugins-bad-a9c26bea9f6cc0427eeb49f9fed7d3fa554bc06d.zip |
fixes for new pkg-config files in gst-plugins-base
Original commit message from CVS:
fixes for new pkg-config files in gst-plugins-base
-rw-r--r-- | configure.ac | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index a6aab22d..60650820 100644 --- a/configure.ac +++ b/configure.ac @@ -256,15 +256,16 @@ AC_SUBST(GST_INTERFACES_LIBS) AC_SUBST(GST_INTERFACES_CFLAGS) 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") +PKG_CHECK_MODULES(GST_PLUGINS_BASE, + gstreamer-plugins-base-$GST_MAJORMINOR >= $GST_REQ, + HAVE_GST_PLUGINS_BASE="yes", HAVE_GST_PLUGINS_BASE="no") -if test "x$HAVE_GST_PLUGINS" = "xno"; then - AC_MSG_ERROR(no GStreamer Plugins Libs found) +if test "x$HAVE_GST_PLUGINS_BASE" = "xno"; then + AC_MSG_ERROR(no GStreamer Base Plugins development files found) fi -AC_SUBST(GST_PLUGINS_LIBS_LIBS) -AC_SUBST(GST_PLUGINS_LIBS_CFLAGS) +AC_SUBST(GST_PLUGINS_BASE_LIBS) +AC_SUBST(GST_PLUGINS_BASE_CFLAGS) dnl Determine endianness AC_C_BIGENDIAN |