configure.ac: add xcb-fixes to the XCB DRI3 list
authorEmil Velikov <emil.velikov@collabora.com>
Fri, 19 May 2017 23:04:33 +0000 (00:04 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Fri, 19 May 2017 23:12:56 +0000 (00:12 +0100)
The XCB module is used by the VL targets. Thus omitting it can lead to
link-time errors due to unresolved symbols.

Other DRI3 users such as the Vulkan WSI and the dri3 loader helper do
not use an update region in their xcb_present_pixmap() call. We will
look into that at a later stage.

Fixes: acf3d2afab0 ("configure: check once for DRI3 dependencies")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101110
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
configure.ac

index a6ea8b42da131e090b9193f68d0a957848d0867f..b788137d515dd53ef6fc5964348c1a9f99427250 100644 (file)
@@ -1723,7 +1723,7 @@ fi
 if test x"$enable_dri3" = xyes; then
     DEFINES="$DEFINES -DHAVE_DRI3"
 
-    dri3_modules="x11-xcb xcb >= $XCB_REQUIRED xcb-dri3 xcb-present xcb-sync xshmfence >= $XSHMFENCE_REQUIRED"
+    dri3_modules="x11-xcb xcb >= $XCB_REQUIRED xcb-dri3 xcb-fixes xcb-present xcb-sync xshmfence >= $XSHMFENCE_REQUIRED"
     PKG_CHECK_MODULES([XCB_DRI3], [$dri3_modules])
 fi