diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2005-04-12 Thomas Vander Stichele <thomas at apestaart dot org> + + * configure.ac: + * gst/audioconvert/Makefile.am: + make sure there is a test registry to work against + 2005-04-12 Jan Schmidt <thaytan@mad.scientist.com> * ext/dts/gstdtsdec.c: (gst_dtsdec_handle_event), diff --git a/configure.ac b/configure.ac index 3971c0fc..de9c370e 100644 --- a/configure.ac +++ b/configure.ac @@ -227,6 +227,12 @@ if test -z $GST_TOOLS_DIR; then fi AC_SUBST(GST_TOOLS_DIR) +GST_LIB_DIR=`pkg-config --variable=libdir gstreamer-$GST_MAJORMINOR` +if test -z $GST_LIB_DIR; then + AC_MSG_ERROR([no libdir defined in GStreamer pkg-config file; core upgrade needed.]) +fi +AC_SUBST(GST_LIB_DIR) + dnl check for gstreamer-control; uninstalled is selected preferentially PKG_CHECK_MODULES(GST_CONTROL, gstreamer-control-$GST_MAJORMINOR >= $GST_REQ, HAVE_GST_CONTROL="yes", HAVE_GST_CONTROL="no") |