mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
509fa3874c
Original commit message from CVS: fixes for --disable-loadsave --disable-registry
15 lines
395 B
Makefile
15 lines
395 B
Makefile
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgstindexers.la
|
|
|
|
# file index uses xml
|
|
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_SRC =
|
|
else
|
|
GST_LOADSAVE_SRC = gstfileindex.c
|
|
endif
|
|
|
|
libgstindexers_la_SOURCES = gstindexers.c gstmemindex.c $(GST_LOADSAVE_SRC)
|
|
libgstindexers_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstindexers_la_LIBADD =
|
|
libgstindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|