From: Sebastian Dröge Date: Wed, 25 Jan 2017 17:21:03 +0000 (+0200) Subject: qt: The code requires at least C++11 X-Git-Tag: 1.19.3~509^2~1695^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d3f6497f50273f10163da7cb13ec6aa557d6cdaf;p=platform%2Fupstream%2Fgstreamer.git 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. --- 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) \