mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
12bbbd5c1e
Original commit message from CVS: Lots of modifications to the plugin system. - Added a GstPluginfeature object that serves as a base class for all plugin contents. - changed the plugin API, everyhting is now added with gst_plugin_add_feature - typefactories are named now so that they can be located easily and filled in at plugin load. - mime types like "video/raw image/raw" are gone for now. - lots of plugin updates (style and API changes) - tested with an without registry. - updates to various tools. - added a little testsuite to test/show how you can load plugins (4 modes) Test this one, Almost everything has changed :-)
20 lines
460 B
Makefile
20 lines
460 B
Makefile
|
|
if GST_DISABLE_REGISTRY
|
|
GST_REGISTRY_SRC =
|
|
else
|
|
GST_REGISTRY_SRC = gstreamer-register
|
|
endif
|
|
|
|
bin_PROGRAMS = gstreamer-launch \
|
|
$(GST_REGISTRY_SRC) \
|
|
gstreamer-inspect \
|
|
gstreamer-compprep \
|
|
gstreamer-complete
|
|
|
|
man_MANS = gstreamer-launch.1 gstreamer-register.1 gstreamer-inspect.1 \
|
|
gstreamer-complete.1 gstreamer-compprep.1
|
|
|
|
LDADD = $(GST_LIBS)
|
|
CFLAGS = $(LIBGST_CFLAGS) -DGST_CONFIG_DIR=\""@sysconfdir@/gstreamer"\"
|
|
|
|
EXTRA_DIST = $(man_MANS)
|