mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
23c17776e7
Original commit message from CVS: * ext/sdl/Makefile.am: * ext/sdl/sdlvideosink.c: (gst_sdlv_process_events): Add GST_CFLAGS, which apparently somehow fixes the build somewhere (#444499); initialise variable to avoid false compiler warning.
18 lines
462 B
Makefile
18 lines
462 B
Makefile
plugin_LTLIBRARIES = libgstsdl.la
|
|
|
|
libgstsdl_la_SOURCES = \
|
|
gstsdl.c \
|
|
sdlvideosink.c \
|
|
sdlaudiosink.c
|
|
|
|
libgstsdl_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(SDL_CFLAGS)
|
|
libgstsdl_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_MAJORMINOR) \
|
|
-lgstaudio-$(GST_MAJORMINOR) \
|
|
-lgstinterfaces-$(GST_MAJORMINOR) \
|
|
$(SDL_LIBS)
|
|
libgstsdl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
sdlvideosink.h \
|
|
sdlaudiosink.h
|