From 516047f66f3acc5dd3b975c5d0abcee0d98c9316 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Tue, 15 Dec 2015 19:28:05 -0500 Subject: [PATCH] qtsink: Add configured GL cflags to the build We don't directly link to GL in the element, though we use GL headers. For this reason we need to include the proper GL headers path. This prevent this element from using a different GL header then libgstgl. --- ext/qt/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/qt/Makefile.am b/ext/qt/Makefile.am index 064e8d1..5fdd90a 100644 --- a/ext/qt/Makefile.am +++ b/ext/qt/Makefile.am @@ -29,7 +29,8 @@ libgstqtsink_la_CXXFLAGS = \ $(GST_CXXFLAGS) \ $(GST_BASE_CFLAGS) \ $(GST_PLUGINS_BASE_CFLAGS) \ - $(QT_CFLAGS) + $(QT_CFLAGS) \ + $(GL_CFLAGS) libgstqtsink_la_LIBADD = \ $(GST_BASE_LIBS) \ -- 2.7.4