diff options
author | Dave Airlie <airlied@redhat.com> | 2009-07-28 18:40:18 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-07-28 18:40:18 +1000 |
commit | ad0b7ba4618c09c1a9d5a6da6b12f42980b7450c (patch) | |
tree | 5d1f460856bf23843a01b716781e2743a2ceef18 | |
parent | 21f6bf3e492d328b8c7003ffb0c9deec0113fb05 (diff) |
savage: move abi check down for RAC
-rw-r--r-- | src/savage_driver.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/savage_driver.c b/src/savage_driver.c index 1566b47..c909783 100644 --- a/src/savage_driver.c +++ b/src/savage_driver.c @@ -42,9 +42,6 @@ #include <unistd.h> #include <errno.h> -#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 6 -#include "xf86RAC.h" -#endif #include "shadowfb.h" #include "globals.h" @@ -63,6 +60,10 @@ #include "savage_bci.h" #include "savage_streams.h" +#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 6 +#include "xf86RAC.h" +#endif + #define TRANSPARENCY_KEY 0xff; #ifdef XF86DRI |