common/m4/gst-feature.m4: Call -config scripts with
authorDavid Schleef <ds@schleef.org>
Tue, 13 Apr 2004 23:25:19 +0000 (23:25 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 13 Apr 2004 23:25:19 +0000 (23:25 +0000)
Original commit message from CVS:
* common/m4/gst-feature.m4: Call -config scripts with
--plugin-libs if it is supported.
* gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
JPEG images are image/jpeg.
* gst/debug/Makefile.am:
* gst/debug/negotiation.c: (gst_negotiation_class_init),
(gst_negotiation_getcaps), (gst_negotiation_pad_link),
(gst_negotiation_update_caps), (gst_negotiation_get_property),
(gst_negotiation_plugin_init): Add a property that acts like
filter caps.
* testsuite/gst-lint:  Move license checking to be a standard
test.

m4/gst-feature.m4

index 0bbf54d..a4ea243 100644 (file)
@@ -130,7 +130,10 @@ AC_DEFUN([GST_CHECK_CONFIGPROG],
     [$1]_CFLAGS=
     HAVE_[$1]=no
   else
-    [$1]_LIBS=`[$2] --libs [$3]`
+    [$1]_LIBS=`[$2] --plugin-libs [$3]`
+    if test "x$[$1]_LIBS" = x; then
+      [$1]_LIBS=`[$2] --libs [$3]`
+    fi
     [$1]_CFLAGS=`[$2] --cflags [$3]`
     HAVE_[$1]=yes
   fi