summaryrefslogtreecommitdiff
path: root/ext/wayland
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-11-04 00:44:32 +0000
committerTim-Philipp Müller <tim@centricular.com>2016-11-04 09:21:59 +0000
commitdc6862bf704a8b44fa5fdeed9e1bae89dc5abfbb (patch)
treefb07ec070dad821236bc0c0079225c51d81453f2 /ext/wayland
parent723218aa631db7ea4d25f08c904b94f73c621ea1 (diff)
downloadgstreamer-plugins-bad-dc6862bf704a8b44fa5fdeed9e1bae89dc5abfbb.tar.gz
wayland: fix cflags/libs order
Diffstat (limited to 'ext/wayland')
-rw-r--r--ext/wayland/Makefile.am11
1 files changed, 7 insertions, 4 deletions
diff --git a/ext/wayland/Makefile.am b/ext/wayland/Makefile.am
index 722fc8d93..8442dbde0 100644
--- a/ext/wayland/Makefile.am
+++ b/ext/wayland/Makefile.am
@@ -19,14 +19,17 @@ nodist_libgstwaylandsink_la_SOURCES = \
viewporter-protocol.c \
linux-dmabuf-unstable-v1-protocol.c
-libgstwaylandsink_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
- $(WAYLAND_CFLAGS) $(GST_PLUGINS_BAD_CFLAGS)
+libgstwaylandsink_la_CFLAGS = \
+ $(GST_PLUGINS_BAD_CFLAGS) \
+ $(GST_PLUGINS_BASE_CFLAGS) \
+ $(GST_CFLAGS) \
+ $(WAYLAND_CFLAGS)
libgstwaylandsink_la_LIBADD = \
+ $(top_builddir)/gst-libs/gst/wayland/libgstwayland-$(GST_API_VERSION).la \
$(GST_PLUGINS_BASE_LIBS) \
-lgstvideo-$(GST_API_VERSION) \
-lgstallocators-$(GST_API_VERSION) \
- $(WAYLAND_LIBS) \
- $(top_builddir)/gst-libs/gst/wayland/libgstwayland-$(GST_API_VERSION).la
+ $(WAYLAND_LIBS)
libgstwaylandsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstwaylandsink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)