mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
compositor: Fix Makefile CFLAGS/LIBADD ordering
We want to use the libraries from -bad if/when present
This commit is contained in:
parent
f54efc206f
commit
48006e2136
1 changed files with 5 additions and 3 deletions
|
@ -10,14 +10,16 @@ libgstcompositor_la_SOURCES = \
|
|||
|
||||
|
||||
nodist_libgstcompositor_la_SOURCES = $(ORC_NODIST_SOURCES)
|
||||
libgstcompositor_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
||||
libgstcompositor_la_CFLAGS = \
|
||||
-I$(top_srcdir)/gst-libs \
|
||||
-I$(top_builddir)/gst-libs \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||
$(GST_BASE_CFLAGS) $(GST_CFLAGS) $(ORC_CFLAGS)
|
||||
libgstcompositor_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstvideo-@GST_API_VERSION@ \
|
||||
libgstcompositor_la_LIBADD = \
|
||||
$(top_builddir)/gst-libs/gst/base/libgstbadbase-$(GST_API_VERSION).la \
|
||||
$(top_builddir)/gst-libs/gst/video/libgstbadvideo-$(GST_API_VERSION).la \
|
||||
$(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstvideo-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS) $(LIBM)
|
||||
libgstcompositor_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstcompositor_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
|
Loading…
Reference in a new issue