mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
88fec19ba2
On debian system headers trigger compiler warnings like these, don't error out on them: /usr/include/directfb/direct/os/linux/glibc/waitqueue.h:95:1: note: previous definition of ‘direct_waitqueue_signal’ was here
18 lines
633 B
Makefile
18 lines
633 B
Makefile
# directfb headers on debian will trigger redundant redeclaration warnings
|
|
ERROR_CFLAGS=
|
|
|
|
plugin_LTLIBRARIES = libgstdfbvideosink.la
|
|
|
|
libgstdfbvideosink_la_SOURCES = dfbvideosink.c
|
|
libgstdfbvideosink_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(DIRECTFB_CFLAGS)
|
|
libgstdfbvideosink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
$(DIRECTFB_LIBS)
|
|
libgstdfbvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = dfbvideosink.h
|
|
|
|
noinst_PROGRAMS = dfb-example
|
|
dfb_example_CFLAGS = $(GST_CFLAGS) $(DIRECTFB_CFLAGS)
|
|
dfb_example_LDADD = $(GST_LIBS) $(DIRECTFB_LIBS)
|