summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2015-09-18 08:26:25 -0700
committerAlex Blasche <alexander.blasche@theqtcompany.com>2015-09-21 05:34:29 +0000
commitb88f167840b0449aa130fc81ee8ee8e2caf028fe (patch)
tree7160618df6bd5e550103d8e328153c3356cc9207
parent7a0a5edcc747bdef71f11638a8c3c47fb31f8be6 (diff)
Use the new way of disabling strict C++ support
4684c1afe5fdb3774d56d85a52b2feaab1b8de2c in qtbase added the feature to default_post.prf Change-Id: I42e7ef1a481840699a8dffff14051bf3b83c69c2 Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
-rw-r--r--src/tools/sdpscanner/sdpscanner.pro10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/tools/sdpscanner/sdpscanner.pro b/src/tools/sdpscanner/sdpscanner.pro
index 6bf0a96c..e4773cae 100644
--- a/src/tools/sdpscanner/sdpscanner.pro
+++ b/src/tools/sdpscanner/sdpscanner.pro
@@ -12,13 +12,5 @@ load(qt_tool)
linux-*: {
# bluetooth.h is not standards compliant
- contains(QMAKE_CXXFLAGS, -std=c++0x) {
- QMAKE_CXXFLAGS -= -std=c++0x
- QMAKE_CXXFLAGS += -std=gnu++0x
- CONFIG -= c++11
- }
- c++11 {
- CONFIG -= c++11
- QMAKE_CXXFLAGS += -std=gnu++0x
- }
+ CONFIG -= strict_c++
}