backports and fixes
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 23 Sep 2002 06:02:17 +0000 (06:02 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 23 Sep 2002 06:02:17 +0000 (06:02 +0000)
Original commit message from CVS:
backports and fixes

tools/Makefile.am
tools/gst-feedback
tools/gst-launch.1
tools/gst-launch.c

index 6809a67..5d0d3b2 100644 (file)
@@ -10,20 +10,24 @@ else
 GST_LOADSAVE_SRC = gst-compprep gst-xmllaunch
 endif
 
-bin_PROGRAMS =         gst-launch      \
+bin_PROGRAMS =         gst-launch              \
                $(GST_REGISTRY_SRC)     \
-               gst-inspect     \
+               gst-inspect             \
                $(GST_LOADSAVE_SRC)     \
+               gst-md5sum              \
                gst-complete
 bin_SCRIPTS = gst-feedback
 
-man_MANS = gst-launch.1 gst-register.1 gst-inspect.1 \
+man_MANS = gst-launch.1 gst-md5sum.1 gst-register.1 gst-inspect.1 \
        gst-complete.1 gst-compprep.1 gst-xmllaunch.1 \
        gst-feedback.1
 
 gst_launch_LDADD = $(GST_LIBS) #-lefence
 gst_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
 
+gst_md5sum_LDADD = $(GST_LIBS) #-lefence
+gst_md5sum_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
+
 if !GST_DISABLE_REGISTRY
 gst_register_LDADD = $(GST_LIBS)
 gst_register_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" 
index e137b73..28c1876 100755 (executable)
@@ -65,3 +65,20 @@ for dirs in /usr/include /usr/local/include /home; do
   fi
 done
 
+echo "+   GSTREAMER PLUG-INS INFORMATION"
+command_output "gst-inspect volume"
+
+echo "++  looking for gstreamer volume plugin in common locations"
+for dirs in /usr/lib /usr/local/lib /home; do
+  if test -d $dirs; then
+    find $dirs -name libgstvolume* | grep so
+  fi
+done
+echo "++  looking for gstreamer headers in common locations"
+for dirs in /usr/include /usr/local/include /home; do
+  if test -d $dirs; then
+    find $dirs -name audio.h
+  fi
+done
+
+
index 25e4055..24bae70 100644 (file)
@@ -117,6 +117,6 @@ Add directories separated with ':' to the plugin search path
 .SH "SEE ALSO"
 .BR gst\-complete (1),
 .BR gst\-register (1),
-.BR gst\-inspect (1),
+.BR gst\-inspect (1)
 .SH "AUTHOR"
 The GStreamer team at http://gstreamer.net/
index 2359aec..b51e05b 100644 (file)
@@ -138,6 +138,7 @@ main(int argc, char *argv[])
     pipeline = (GstElement*) gst_parse_launchv ((const gchar**)argvn, &error);
   }
   g_free (argvn);
+  g_free (argvn);
 
   if (!pipeline) {
     if (error)