summaryrefslogtreecommitdiff
path: root/src/i810_dri.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/i810_dri.c')
-rw-r--r--src/i810_dri.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/i810_dri.c b/src/i810_dri.c
index 8e49fd93..8cd4d1ea 100644
--- a/src/i810_dri.c
+++ b/src/i810_dri.c
@@ -319,11 +319,12 @@ I810DRIScreenInit(ScreenPtr pScreen)
int major, minor, patch;
DRIQueryVersion(&major, &minor, &patch);
- if (major != 4 || minor < 0) {
+ if (major != DRIINFO_MAJOR_VERSION || minor < DRIINFO_MINOR_VERSION) {
xf86DrvMsg(pScreen->myNum, X_ERROR,
"[dri] I810DRIScreenInit failed because of a version mismatch.\n"
- "[dri] libDRI version is %d.%d.%d bug version 4.0.x is needed.\n"
- "[dri] Disabling DRI.\n", major, minor, patch);
+ "[dri] libdri version is %d.%d.%d bug version %d.%d.x is needed.\n"
+ "[dri] Disabling DRI.\n", major, minor, patch,
+ DRIINFO_MAJOR_VERSION, DRIINFO_MINOR_VERSION);
return FALSE;
}
}