summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-02-18 11:49:25 +0200
committerSebastian Dröge <sebastian@centricular.com>2018-02-18 11:49:25 +0200
commit90c1124393a972d8231235fce0f766af338d52ce (patch)
treee11d49aebda0893a2e5ff1dd6d06299c253ba94f /ext
parent34f0d9868ade5bcc153d573d2fc18ac8a8245e86 (diff)
downloadgstreamer-plugins-bad-90c1124393a972d8231235fce0f766af338d52ce.tar.gz
gl: GL_LIBS does not exist anymore but X11_LIBS does and is needed
In case of X11 we have to call XInitThreads().
Diffstat (limited to 'ext')
-rw-r--r--ext/gl/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/gl/Makefile.am b/ext/gl/Makefile.am
index 067ba9c07..b501a5110 100644
--- a/ext/gl/Makefile.am
+++ b/ext/gl/Makefile.am
@@ -35,7 +35,7 @@ libgstopenglmixers_la_CFLAGS = \
$(GST_BASE_CFLAGS) \
$(GST_CONTROLLER_CFLAGS) \
$(GST_CFLAGS) \
- $(GL_CFLAGS)
+ $(X11_CFLAGS)
libgstopenglmixers_la_LIBADD = \
$(top_builddir)/gst-libs/gst/video/libgstbadvideo-@GST_API_VERSION@.la \
@@ -44,7 +44,7 @@ libgstopenglmixers_la_LIBADD = \
$(GST_BASE_LIBS) \
$(GST_CONTROLLER_LIBS) \
$(GST_LIBS) \
- $(GL_LIBS) \
+ $(X11_LIBS) \
$(LIBM)
libgstopenglmixers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)