From 0e6a8838dc0f0bba4ea4994f36c5ed83cf44de86 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 064e8d13f7..5fdd90a05b 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) \