diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2007-03-20 09:16:02 +0100 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2007-03-20 09:16:02 +0100 |
commit | 166c760a86165330175023e07c4b2bd6891633c5 (patch) | |
tree | 6cd40e5ab0b303630c81260dc629da9112e0f2d0 /src/atidri.c | |
parent | 1bdd376dbd57de8925244f0808f974d6d8cff39d (diff) |
Fix advertised minimum minor version of the DRI module.
We don't automatically require bumped minor versions.
Diffstat (limited to 'src/atidri.c')
-rw-r--r-- | src/atidri.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/atidri.c b/src/atidri.c index 83cb25f1..d4fbeadb 100644 --- a/src/atidri.c +++ b/src/atidri.c @@ -1197,13 +1197,13 @@ Bool ATIDRIScreenInit( ScreenPtr pScreen ) /* Check the DRI version */ DRIQueryVersion( &major, &minor, &patch ); - if ( major != DRIINFO_MAJOR_VERSION || minor < DRIINFO_MINOR_VERSION ) { + if ( major != DRIINFO_MAJOR_VERSION || minor < 0 ) { xf86DrvMsg( pScreen->myNum, X_ERROR, "[dri] ATIDRIScreenInit failed because of a version mismatch.\n" "[dri] libdri version is %d.%d.%d but version %d.%d.x is needed.\n" "[dri] Disabling the DRI.\n", major, minor, patch, - DRIINFO_MAJOR_VERSION, DRIINFO_MINOR_VERSION ); + DRIINFO_MAJOR_VERSION, 0 ); return FALSE; } |