diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2005-10-14 05:36:39 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2005-10-14 05:36:39 +0000 |
commit | 821584fcd3bf83f3aaacd35e54323f71d976db44 (patch) | |
tree | 9cfe3c97a41428a72874f2055a04700a096f4805 /configure.ac | |
parent | 8df7628a2ad93edf8271f13e0b43c0fa8f766668 (diff) |
Require glproto >= 1.4.1 if building DRI with GLX. This fixes a build
failure on a number of hyperpipe functions.
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 1d7f6d62f..3be985c88 100644 --- a/configure.ac +++ b/configure.ac @@ -493,7 +493,7 @@ if test "x$DRI" = xyes; then PKG_CHECK_MODULES([DRIPROTO], [xf86driproto]) PKG_CHECK_MODULES([LIBDRM], [libdrm]) if test "x$GLX" = xyes; then - PKG_CHECK_MODULES([GL], [glproto]) + PKG_CHECK_MODULES([GL], [glproto >= 1.4.1]) fi AC_SUBST(DRIPROTO_CFLAGS) AC_SUBST(LIBDRM_CFLAGS) |