diff options
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | tools/configure/configureapp.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -7610,6 +7610,8 @@ CFG_CONCURRENT="yes" if [ "$canBuildQtConcurrent" = "no" ]; then QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_CONCURRENT" CFG_CONCURRENT="no" +else + QT_CONFIG="$QT_CONFIG concurrent" fi if [ "$CFG_XMLPATTERNS" = "yes" -a "$CFG_EXCEPTIONS" = "no" ]; then diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 4ef61eb..0b4fbd8 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -2795,6 +2795,8 @@ void Configure::generateOutputVars() // We currently have no switch for QtSvg, so add it unconditionally. qtConfig += "svg"; + // We currently have no switch for QtConcurrent, so add it unconditionally. + qtConfig += "concurrent"; // Add config levels -------------------------------------------- QStringList possible_configs = QStringList() |