diff options
author | Daniel Stone <[email protected]> | 2018-03-20 16:05:13 +0000 |
---|---|---|
committer | Daniel Stone <[email protected]> | 2018-03-20 16:38:08 +0000 |
commit | 9f3509665d880457487dff82a96132d2eb27a0b4 (patch) | |
tree | 8c0f26340bad49484272d9f7266b0cf42e3379ce /configure.ac | |
parent | bc5e59119ef6e7fdb5b54ce0a690a1ad43e6401c (diff) |
dri3: Fix typo in version check
The have-new-DRI3 codepaths would never actually properly trigger, since
there was a typo in configure.ac which broke the version check. This
went unnoticed but for an error in config.log if you looked closely
enough.
Signed-off-by: Daniel Stone <[email protected]>
Reported-by: Lukas F. Hartmann <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Fixes: 7aeef2d4efdc ("dri3: allow building against older xcb (v3)")
Cc: Dave Airlie <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d1c8bb82dae..5074275211e 100644 --- a/configure.ac +++ b/configure.ac @@ -1852,7 +1852,7 @@ if test x"$enable_dri3" = xyes; then dri3_modules="x11-xcb xcb >= $XCB_REQUIRED xcb-dri3 xcb-xfixes xcb-present xcb-sync xshmfence >= $XSHMFENCE_REQUIRED" PKG_CHECK_MODULES([XCB_DRI3], [$dri3_modules]) - dri3_modifier_modules="xcb-dri3 >= $XCBDRI3_MODIFIERS_REQUIRED xcb-present >= $XCBPRESENT_MODIFIERS_REQUIRES" + dri3_modifier_modules="xcb-dri3 >= $XCBDRI3_MODIFIERS_REQUIRED xcb-present >= $XCBPRESENT_MODIFIERS_REQUIRED" PKG_CHECK_MODULES([XCB_DRI3_MODIFIERS], [$dri3_modifier_modules], [have_dri3_modifiers=yes], [have_dri3_modifiers=no]) if test "x$have_dri3_modifiers" == xyes; then |