mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
249e792b7f
Original commit message from CVS: * Makefile.am: * configure.ac: * plugins/elements/Makefile.am: * plugins/elements/gstcapsfilter.c: * plugins/elements/gstfilesink.c: * plugins/elements/gstfilesrc.c: * plugins/elements/gstidentity.c: * plugins/indexers/Makefile.am: do CVS surgery and related build fixery to move elements and indexers in a new gstreamer/plugins directory, out of the gst/ directory
18 lines
494 B
Makefile
18 lines
494 B
Makefile
plugin_LTLIBRARIES = libgstindexers.la
|
|
# file index uses xml
|
|
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_SRC =
|
|
else
|
|
GST_LOADSAVE_SRC = gstfileindex.c
|
|
endif
|
|
if HAVE_MMAP
|
|
|
|
else
|
|
GST_LOADSAVE_SRC =
|
|
endif
|
|
|
|
libgstindexers_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_MAJORMINOR@.la
|
|
libgstindexers_la_SOURCES = gstindexers.c gstmemindex.c $(GST_LOADSAVE_SRC)
|
|
libgstindexers_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libgstindexers_la_LIBADD = $(GST_OBJ_LIBS)
|
|
libgstindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|