diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/atidri.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index ca69b0e6..4aa61594 100644 --- a/configure.ac +++ b/configure.ac @@ -109,7 +109,7 @@ AC_MSG_RESULT([$DRI]) AM_CONDITIONAL(DRI, test x$DRI = xyes) if test "$DRI" = yes; then - PKG_CHECK_MODULES(DRI, [libdrm >= 2.0 xf86driproto]) + PKG_CHECK_MODULES(DRI, [libdrm >= 2.2 xf86driproto]) AC_DEFINE(XF86DRI,1,[Enable DRI driver support]) AC_DEFINE(XF86DRI_DEVEL,1,[Enable developmental DRI driver support]) if test "$have_damage_h" = yes; then diff --git a/src/atidri.c b/src/atidri.c index 2bc6d841..cd578748 100644 --- a/src/atidri.c +++ b/src/atidri.c @@ -1378,7 +1378,7 @@ Bool ATIDRIScreenInit( ScreenPtr pScreen ) /* Incompatible DRM version */ xf86DrvMsg( pScreen->myNum, X_ERROR, "[dri] ATIDRIScreenInit failed because of a version mismatch.\n" - "[dri] mach64.o kernel module version is %d.%d.%d, but version 1.0 or greater is needed.\n" + "[dri] mach64.o kernel module version is %d.%d.%d, but version 2.x is needed (with 2.x >= 2.0).\n" "[dri] Disabling DRI.\n", version->version_major, version->version_minor, |