mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
tools/gst-feedback-m.m: Update for 0.9/0.10 (fixes #323870).
Original commit message from CVS: * tools/gst-feedback-m.m: Update for 0.9/0.10 (fixes #323870).
This commit is contained in:
parent
8ea948df92
commit
77b1a17fc9
2 changed files with 26 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* tools/gst-feedback-m.m:
|
||||
Update for 0.9/0.10 (fixes #323870).
|
||||
|
||||
2005-12-15 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gstminiobject.c: (gst_value_mini_object_lcopy):
|
||||
|
|
|
@ -40,17 +40,31 @@ for mm in 0.6 0.7 0.8
|
|||
do
|
||||
echo "+ $mm"
|
||||
command_output "pkg-config --version"
|
||||
command_output "pkg-config gstreamer-$mm --modversion"
|
||||
command_output "pkg-config gstreamer-$mm --cflags"
|
||||
command_output "pkg-config gstreamer-$mm --libs"
|
||||
command_output "pkg-config gstreamer-libs-$mm --modversion"
|
||||
command_output "pkg-config gstreamer-libs-$mm --cflags"
|
||||
command_output "pkg-config gstreamer-libs-$mm --libs"
|
||||
command_output "pkg-config gstreamer-$mm --modversion" 2>/dev/null
|
||||
command_output "pkg-config gstreamer-$mm --cflags" 2>/dev/null
|
||||
command_output "pkg-config gstreamer-$mm --libs" 2>/dev/null
|
||||
command_output "pkg-config gstreamer-libs-$mm --modversion" 2>/dev/null
|
||||
command_output "pkg-config gstreamer-libs-$mm --cflags" 2>/dev/null
|
||||
command_output "pkg-config gstreamer-libs-$mm --libs" 2>/dev/null
|
||||
echo
|
||||
done
|
||||
|
||||
for mm in 0.9 0.10
|
||||
do
|
||||
for module in gstreamer gstreamer-base gstreamer-check gstreamer-controller\
|
||||
gstreamer-dataprotocol gstreamer-plugins-base gstreamer-net\
|
||||
gst-python
|
||||
do
|
||||
echo "+ $mm"
|
||||
command_output "pkg-config $module-$mm --modversion" 2>/dev/null
|
||||
command_output "pkg-config $module-$mm --cflags" 2>/dev/null
|
||||
command_output "pkg-config $module-$mm --libs" 2>/dev/null
|
||||
echo
|
||||
done
|
||||
done
|
||||
|
||||
echo "+ GSTREAMER INFORMATION"
|
||||
command_output "which gst-register"
|
||||
command_output "which gst-inspect"
|
||||
command_output "gst-inspect"
|
||||
command_output "gst-inspect fakesrc"
|
||||
command_output "gst-inspect fakesink"
|
||||
|
|
Loading…
Reference in a new issue