summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAndrew Knight <andrew.knight@digia.com>2013-11-28 15:38:08 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-12-03 20:02:41 +0100
commitfcfb62626bc2d3e7b19c58555457c6319d3e85ca (patch)
tree7a3d692fd4f03d2b4576e9058f841c3634985d17 /configure
parentcac6c860c00558b9692986a1c07e505dd334cc33 (diff)
configure: Properly report xcb-xlib configuration
d34cae51 introduced a new configuration parameter, xcb-xlib, but did not remember to set the internal variable after the config test was run, resulting in a potentially incorrect reporting of the option. Change-Id: I979589d9aad2eb5e0fac069dfcd5b329a51ae059 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 329c436aad..d79e5b1a19 100755
--- a/configure
+++ b/configure
@@ -5127,6 +5127,9 @@ if [ "$CFG_XCB" != "no" ]; then
if [ "$CFG_XCB_XLIB" != "no" ]; then
if compileTest qpa/xcb-xlib "xcb-xlib" $QMAKE_CFLAGS_XCB $QMAKE_LIBS_XCB; then
QT_CONFIG="$QT_CONFIG xcb-xlib"
+ CFG_XCB_XLIB=yes
+ else
+ CFG_XCB_XLIB=no
fi
fi