diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-03-04 16:46:08 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-03-04 20:41:10 +0000 |
commit | c23834eab366302dc434f5c9756e16dd848cca74 (patch) | |
tree | 395f83633c3d7b6491883cb88bfc8abab16db0d0 | |
parent | 6a91eb2f48a44c96dc7e14a4dab7c112c8e4b0c9 (diff) | |
download | gst-plugins-bad-c23834eab366302dc434f5c9756e16dd848cca74.tar.gz gst-plugins-bad-c23834eab366302dc434f5c9756e16dd848cca74.tar.bz2 gst-plugins-bad-c23834eab366302dc434f5c9756e16dd848cca74.zip |
valve: rename plugin file from libfsvalve.* to libgstvalve.*
If you're running things uninstalled, you might need to manually
remove the registry to get the plugin's features to show up
correctly. Also, you probably want to do a make clean to get rid
of the old plugin file.
-rw-r--r-- | docs/plugins/inspect/plugin-valve.xml | 6 | ||||
-rw-r--r-- | gst-plugins-bad.spec.in | 2 | ||||
-rw-r--r-- | gst/valve/Makefile.am | 10 |
3 files changed, 9 insertions, 9 deletions
diff --git a/docs/plugins/inspect/plugin-valve.xml b/docs/plugins/inspect/plugin-valve.xml index 30695657..baee4950 100644 --- a/docs/plugins/inspect/plugin-valve.xml +++ b/docs/plugins/inspect/plugin-valve.xml @@ -1,13 +1,13 @@ <plugin> <name>valve</name> <description>Valve</description> - <filename>../../gst/valve/.libs/libfsvalve.so</filename> - <basename>libfsvalve.so</basename> + <filename>../../gst/valve/.libs/libgstvalve.so</filename> + <basename>libgstvalve.so</basename> <version>0.10.10.1</version> <license>LGPL</license> <source>gst-plugins-bad</source> <package>GStreamer Bad Plug-ins CVS/prerelease</package> - <origin>http://gstreamer.freedesktop.org</origin> + <origin>Unknown package origin</origin> <elements> <element> <name>valve</name> diff --git a/gst-plugins-bad.spec.in b/gst-plugins-bad.spec.in index 78c0b4ab..064c1b2a 100644 --- a/gst-plugins-bad.spec.in +++ b/gst-plugins-bad.spec.in @@ -119,7 +119,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/gstreamer-%{majorminor}/libgstmxf.so %{_libdir}/gstreamer-%{majorminor}/libgstvmnc.so %{_libdir}/gstreamer-%{majorminor}/libgstvideosignal.so -%{_libdir}/gstreamer-%{majorminor}/libfsvalve.so +%{_libdir}/gstreamer-%{majorminor}/libgstvalve.so %{_libdir}/gstreamer-%{majorminor}/libgstautoconvert.so %{_libdir}/gstreamer-%{majorminor}/libgstdtmf.so %{_libdir}/gstreamer-%{majorminor}/libgstliveadder.so diff --git a/gst/valve/Makefile.am b/gst/valve/Makefile.am index 797f6a13..0e78b5ac 100644 --- a/gst/valve/Makefile.am +++ b/gst/valve/Makefile.am @@ -1,7 +1,7 @@ -plugin_LTLIBRARIES = libfsvalve.la +plugin_LTLIBRARIES = libgstvalve.la -libfsvalve_la_SOURCES = gstvalve.c gstvalve.h +libgstvalve_la_SOURCES = gstvalve.c gstvalve.h -libfsvalve_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(ERROR_CFLAGS) -libfsvalve_la_LIBADD = $(GST_LIBS_LIBS) -libfsvalve_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) +libgstvalve_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(ERROR_CFLAGS) +libgstvalve_la_LIBADD = $(GST_LIBS_LIBS) +libgstvalve_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) |