From d3f6497f50273f10163da7cb13ec6aa557d6cdaf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 25 Jan 2017 19:21:03 +0200 Subject: [PATCH] qt: The code requires at least C++11 ... and clang requires this to be specified on the commandline while gcc nowadays defaults to C++11 or even newer. --- ext/qt/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/qt/Makefile.am b/ext/qt/Makefile.am index b8bd5d4..626e3a8 100644 --- a/ext/qt/Makefile.am +++ b/ext/qt/Makefile.am @@ -38,7 +38,7 @@ libgstqmlgl_la_CXXFLAGS = \ $(GST_BASE_CFLAGS) \ $(GST_PLUGINS_BASE_CFLAGS) \ $(QT_CFLAGS) \ - $(GL_CFLAGS) + $(GL_CFLAGS) -std=c++11 libgstqmlgl_la_LIBADD = \ $(GST_BASE_LIBS) \ -- 2.7.4