diff options
author | Dave Airlie <airlied@linux.ie> | 2008-07-03 20:00:22 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2008-07-03 20:00:22 +1000 |
commit | 1e96782011f0b4ba6ed1d3d3df118964a58d15fd (patch) | |
tree | 119c00db81b25d7857526d94395a50f0acea8504 /configure.ac | |
parent | 1771edcb44b564f83f509748b4e4cd5b7586e2a8 (diff) |
dri2: bump libdrm numbers as 2.3.1 is released without ttm interface
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index d7a3d6893..fed80371c 100644 --- a/configure.ac +++ b/configure.ac @@ -381,7 +381,7 @@ case $host_os in AC_DEFINE(PCVT_SUPPORT, 1, [System has PCVT console]) AC_DEFINE(SYSCONS_SUPPORT, 1, [System has syscons console]) DRI=yes - PKG_CHECK_EXISTS([dri2proto >= 1.1 libdrm >= 2.3.1], DRI2=yes, DRI2=no) + PKG_CHECK_EXISTS([dri2proto >= 1.1 libdrm >= 2.3.2], DRI2=yes, DRI2=no) ;; *netbsd*) AC_DEFINE(CSRG_BASED, 1, [System is BSD-like]) @@ -389,7 +389,7 @@ case $host_os in AC_DEFINE(PCVT_SUPPORT, 1, [System has PCVT console]) AC_DEFINE(WSCONS_SUPPORT, 1, [System has wscons console]) DRI=yes - PKG_CHECK_EXISTS([dri2proto >= 1.1 libdrm >= 2.3.1], DRI2=yes, DRI2=no) + PKG_CHECK_EXISTS([dri2proto >= 1.1 libdrm >= 2.3.2], DRI2=yes, DRI2=no) ;; *openbsd*) AC_DEFINE(CSRG_BASED, 1, [System is BSD-like]) @@ -398,7 +398,7 @@ case $host_os in ;; *linux*) DRI=yes - PKG_CHECK_EXISTS([dri2proto >= 1.1 libdrm >= 2.3.1], DRI2=yes, DRI2=no) + PKG_CHECK_EXISTS([dri2proto >= 1.1 libdrm >= 2.3.2], DRI2=yes, DRI2=no) KDRIVE_HW=yes ;; *solaris*) @@ -882,7 +882,7 @@ if test "x$DRI2" = xyes; then # FIXME: Bump the versions once we have releases of these. AC_DEFINE(DRI2, 1, [Build DRI2 extension]) PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= 1.1]) - PKG_CHECK_MODULES([LIBDRM], [libdrm >= 2.3.1]) + PKG_CHECK_MODULES([LIBDRM], [libdrm >= 2.3.2]) fi AM_CONDITIONAL(XINERAMA, [test "x$XINERAMA" = xyes]) |