mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
086de421dc
Original commit message from CVS: Totally rewritten registry handling. - move the registry save/load code into a gstregistry subclass, this will make it possible to use other registries (flat file, web based, RDBMS type, etc..) - a simple GMarkup xml registry is implemented - use standard statically linked plugins for core elements. - GstPlugin has a very well defined set of functions now A little bytestream hack.. Added more info to -inspect. Some more debugging info for clocking. Small cleanups I use ./gst-register --gst-plugin-path=/opt/src/sourceforge/gst-plugins/gst-libs:/opt/src/sourceforge/gst-plugins/ to register core and gst-plugins now.
13 lines
378 B
Makefile
13 lines
378 B
Makefile
noinst_LTLIBRARIES = libgstxmlregistry.la
|
|
|
|
libgstxmlregistry_la_SOURCES = gstxmlregistry.c
|
|
|
|
libgstxmlregistry_la_CFLAGS = $(LIBGST_CFLAGS)
|
|
libgstxmlregistry_la_LIBADD = $(LIBGST_LIBS)
|
|
|
|
noinst_HEADERS = gstxmlregistry.h
|
|
check_PROGRAMS = registrytest
|
|
|
|
registrytest_SOURCES = registrytest.c
|
|
registrytest_CFLAGS = $(GST_CFLAGS)
|
|
registrytest_LDADD = $(GST_LIBS) libgstxmlregistry.la
|