summaryrefslogtreecommitdiff
path: root/src/radeon_dri.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/radeon_dri.c')
-rw-r--r--src/radeon_dri.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/radeon_dri.c b/src/radeon_dri.c
index 88dda361..ef82bac0 100644
--- a/src/radeon_dri.c
+++ b/src/radeon_dri.c
@@ -1211,14 +1211,15 @@ Bool RADEONDRIScreenInit(ScreenPtr pScreen)
/* Check the DRI version */
DRIQueryVersion(&major, &minor, &patch);
- if (major != 4 || minor < 0) {
+ if (major != DRIINFO_MAJOR_VERSION || minor < DRIINFO_MINOR_VERSION) {
xf86DrvMsg(pScreen->myNum, X_ERROR,
"[dri] RADEONDRIScreenInit failed because of a version "
"mismatch.\n"
- "[dri] libDRI version is %d.%d.%d but version 4.0.x is "
+ "[dri] libdri version is %d.%d.%d but version %d.%d.x is "
"needed.\n"
"[dri] Disabling DRI.\n",
- major, minor, patch);
+ major, minor, patch,
+ DRIINFO_MAJOR_VERSION, DRIINFO_MINOR_VERSION);
return FALSE;
}