diff options
author | Tom Stellard <[email protected]> | 2012-07-13 13:46:23 +0000 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-08-12 15:42:43 -0700 |
commit | e98ace934e1ea875f352fcef823ca46a416ca751 (patch) | |
tree | 80e9a1163f9de73ae80ef9793571cb7bfb87386c /configure.ac | |
parent | 4c73282d2bfa8fa52acdb3ac32c5eca260bad792 (diff) |
configure: Check xcb version when X11 pkgconfig exists
Commit 6882381a2efbdf06b7002d11468c94b9964c2bc8 added a dependency on a
newer version of xcb, but the version check wasn't added in all the
necessary places.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 89686b47fcf..2ecedaf0b1d 100644 --- a/configure.ac +++ b/configure.ac @@ -976,6 +976,7 @@ xyesno) # find the DRI deps for libGL if test "$x11_pkgconfig" = yes; then + PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx >= 1.8.1]) dri_modules="x11 xext xdamage xfixes x11-xcb xcb-glx" # add xf86vidmode if available |