diff options
author | Emil Velikov <[email protected]> | 2017-02-09 13:35:49 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-02-13 10:14:06 +0000 |
commit | 43b09ee0b2826772e55e0781dcc3f93314c12b26 (patch) | |
tree | 6c817dd64db83fe241f3e4ebb82d99f54f247a11 | |
parent | bfac8d1749501b095e651d70415d46a27ad784ad (diff) |
configure.ac: check for libXdamage 1.1 or later
Released back in 2007 so it should not be an issue for anyone building
from git.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d0c3b554e9b..f001743ea21 100644 --- a/configure.ac +++ b/configure.ac @@ -94,6 +94,7 @@ WAYLAND_REQUIRED=1.11 XCB_REQUIRED=1.9.3 XCBDRI2_REQUIRED=1.8 XCBGLX_REQUIRED=1.8.1 +XDAMAGE_REQUIRED=1.1 XSHMFENCE_REQUIRED=1.1 XVMC_REQUIRED=1.0.6 PYTHON_MAKO_REQUIRED=0.8.0 @@ -1459,7 +1460,7 @@ xdri) # DRI-based GLX # find the DRI deps for libGL - dri_modules="x11 xext xdamage xfixes x11-xcb xcb xcb-glx >= $XCBGLX_REQUIRED" + dri_modules="x11 xext xdamage >= $XDAMAGE_REQUIRED xfixes x11-xcb xcb xcb-glx >= $XCBGLX_REQUIRED" if test x"$driglx_direct" = xyes; then if test x"$dri_platform" = xdrm ; then |