From: Nicolas Dufresne Date: Wed, 16 Dec 2015 00:28:05 +0000 (-0500) Subject: qtsink: Add configured GL cflags to the build X-Git-Tag: 1.19.3~507^2~7436 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=516047f66f3acc5dd3b975c5d0abcee0d98c9316;p=platform%2Fupstream%2Fgstreamer.git 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. --- 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) \