mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
76f35f988f
Original commit message from CVS: * configure.ac: Add check for mmap * gst/debug/Makefile.am: Only compile efence plugin on systems that have mmap.
32 lines
989 B
Makefile
32 lines
989 B
Makefile
if GST_HAVE_MMAP
|
|
EFENCE_PLUGIN=libgstefence.la
|
|
else
|
|
EFENCE_PLUGIN=
|
|
endif
|
|
|
|
plugin_LTLIBRARIES = $(EFENCE_PLUGIN) libgstdebug.la libgstnavigationtest.la
|
|
|
|
noinst_HEADERS = efence.h gstnavigationtest.h gstnavseek.h tests.h
|
|
|
|
libgstefence_la_SOURCES = efence.c
|
|
libgstefence_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstefence_la_LIBADD = $(GST_LIBS)
|
|
libgstefence_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstnavigationtest_la_SOURCES = gstnavigationtest.c
|
|
libgstnavigationtest_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)/gst/videofilter
|
|
libgstnavigationtest_la_LIBADD = $(GST_LIBS) $(top_builddir)/gst/videofilter/libgstvideofilter-@GST_MAJORMINOR@.la
|
|
libgstnavigationtest_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstdebug_la_SOURCES = \
|
|
gstdebug.c \
|
|
breakmydata.c \
|
|
progressreport.c \
|
|
gstnavseek.c \
|
|
tests.c \
|
|
testplugin.c
|
|
# negotiation.c
|
|
|
|
libgstdebug_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstdebug_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
|
libgstdebug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|