diff options
author | Andres Gomez <agomez@igalia.com> | 2016-05-20 16:54:35 +0300 |
---|---|---|
committer | Alejandro PiƱeiro <apinheiro@igalia.com> | 2016-05-23 11:21:34 +0200 |
commit | 4424bf5da4f9cd18bb30fc14d1d8403e4ec6caff (patch) | |
tree | 9815be235aa2a7042b45321c5e2b99c7b2cba8bb | |
parent | 3c9096eea46fc79e5d734ea0629673d1889966d7 (diff) |
configure: added xcb to dri3 modules to pkg-conf
This fixes a recent linking error in libvulkan_common
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Signed-off-by: Andres Gomez <agomez@igalia.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6eee2bca6e..de62e8babc 100644 --- a/configure.ac +++ b/configure.ac @@ -1319,7 +1319,7 @@ xdri) if test x"$enable_dri3" = xyes; then PKG_CHECK_EXISTS([xcb >= $XCB_REQUIRED], [], AC_MSG_ERROR([DRI3 requires xcb >= $XCB_REQUIRED])) - dri3_modules="xcb-dri3 xcb-present xcb-sync xshmfence >= $XSHMFENCE_REQUIRED" + dri3_modules="xcb xcb-dri3 xcb-present xcb-sync xshmfence >= $XSHMFENCE_REQUIRED" PKG_CHECK_MODULES([XCB_DRI3], [$dri3_modules]) fi fi |