summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2017-01-25 09:59:08 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2017-01-25 12:11:31 +0000
commitdcf0d42f3de04c01ff6bfedf1a2ded863b134268 (patch)
tree2d24aa4a774cd6141fcd4fe828fb16fa00275c97
parentfce06b359971d798474892fad2d56092f27b0f6b (diff)
Enable build of QtWebPluginProcess
It is enabled when xlibAvailable() returns true, but this test function was forgotten to be ported to use qtConfig() and works incorrectly. Change-Id: I62793aeed4ffa78a68c1f35d07c88c6c9eea71cf Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
-rw-r--r--Tools/qmake/mkspecs/features/functions.prf2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/qmake/mkspecs/features/functions.prf b/Tools/qmake/mkspecs/features/functions.prf
index dc0c78f97..2f5b87c7c 100644
--- a/Tools/qmake/mkspecs/features/functions.prf
+++ b/Tools/qmake/mkspecs/features/functions.prf
@@ -293,7 +293,7 @@ defineTest(linkAgainstLibrary) {
}
defineTest(xlibAvailable) {
- contains(QT_CONFIG, xcb-xlib) {
+ qtConfig(xcb):qtConfig(xcb-xlib) {
return(true)
} else {
return(false)