mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
e3e695a537
Original commit message from CVS: * configure.ac: check for some headers * gst/elements/Makefile.am: * gst/elements/gstelements.c: don't compile fdsrc without sys/socket.h * gst/indexers/Makefile.am: * gst/indexers/gstindexers.c: (plugin_init): don't compile fileindex without mmap
16 lines
407 B
Makefile
16 lines
407 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_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)
|