diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2014-03-11 10:00:27 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2014-03-11 10:01:04 +0000 |
commit | 59f2f4885dbead3f2aece668f48c3ac749f724c2 (patch) | |
tree | 2db5ec8426ce06428f916024139f8e98cf2cb0e4 /src | |
parent | 78970676e79d462cf99509012db54479ba93c01a (diff) |
intel: Fix versioning of SUPPORTS_SERVER_FD
The current snapshot is 1.15.99.901, which means that the new feature
will first be available in 1.15.99.902.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel_module.c b/src/intel_module.c index 75860be2..7f31a948 100644 --- a/src/intel_module.c +++ b/src/intel_module.c @@ -420,7 +420,7 @@ static Bool intel_driver_func(ScrnInfoPtr pScrn, return TRUE; -#if XORG_VERSION_CURRENT > XORG_VERSION_NUMERIC(1,15,99,902,0) +#if XORG_VERSION_CURRENT >= XORG_VERSION_NUMERIC(1,15,99,902,0) case SUPPORTS_SERVER_FDS: return TRUE; #endif |