summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-03-05 11:38:46 +0200
committerSebastian Dröge <sebastian@centricular.com>2016-03-05 11:38:46 +0200
commitdbefd2f8a8a176d7c3b5c82fec745023b12f3fa2 (patch)
treec1060d57fc96e2e5cb0555a8e366c884e317980c
parent10c6d1b558910072a125ce7bbf66392724b1aee9 (diff)
downloadgstreamer-plugins-bad-dbefd2f8a8a176d7c3b5c82fec745023b12f3fa2.tar.gz
gtk: examples: #define GST_USE_UNSTABLE_API and link with X11_LIBS
X11_LIBS is needed for XInitThreads() and without the #define we get warnings about the GL API being still unstable.
-rw-r--r--tests/examples/gtk/Makefile.am12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/examples/gtk/Makefile.am b/tests/examples/gtk/Makefile.am
index 71441b453..adf5e3178 100644
--- a/tests/examples/gtk/Makefile.am
+++ b/tests/examples/gtk/Makefile.am
@@ -16,10 +16,12 @@ gtkglsink_CFLAGS = $(GTK3_CFLAGS) \
$(GST_PLUGINS_BAD_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_CFLAGS) \
- $(GL_CFLAGS)
+ $(GL_CFLAGS) \
+ -DGST_USE_UNSTABLE_API
gtkglsink_LDADD = $(GTK3_LIBS) \
$(GST_LIBS) \
- $(GL_LIBS)
+ $(GL_LIBS) \
+ $(X11_LIBS)
glliveshader_SOURCES = glliveshader.c
glliveshader_CFLAGS = $(GTK3_CFLAGS) \
@@ -28,10 +30,12 @@ glliveshader_CFLAGS = $(GTK3_CFLAGS) \
$(GST_PLUGINS_BAD_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_CFLAGS) \
- $(GL_CFLAGS)
+ $(GL_CFLAGS) \
+ -DGST_USE_UNSTABLE_API
glliveshader_LDADD = $(GTK3_LIBS) \
$(GST_LIBS) \
$(GL_LIBS) \
- $(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_API_VERSION).la
+ $(top_builddir)/gst-libs/gst/gl/libgstgl-$(GST_API_VERSION).la \
+ $(X11_LIBS)
endif
endif