diff options
author | Dave Airlie <airlied@gmail.com> | 2012-07-13 14:33:47 +1000 |
---|---|---|
committer | Dave Airlie <airlied@gmail.com> | 2012-07-13 14:33:47 +1000 |
commit | 138d1ea01298aedbe414ecc48374e433d6960010 (patch) | |
tree | 9285a6c55d4bcff924497644e95e81192455ff50 /src/ast.h | |
parent | eafaa2666fa43d6b06bec013feb254ea92759406 (diff) |
ast: deal with XAA removal.
This deals with the removal of XAA from the server, should
fix tinderbox.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/ast.h')
-rw-r--r-- | src/ast.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -23,6 +23,10 @@ #include <string.h> #include <stdlib.h> +#ifdef HAVE_XAA_H +#include "xaa.h" +#endif + #include "ast_pcirename.h" #include "compat-api.h" @@ -204,7 +208,9 @@ typedef struct _ASTRec { OptionInfoPtr Options; DisplayModePtr ModePtr; FBLinearPtr pCMDQPtr; +#ifdef HAVE_XAA_H XAAInfoRecPtr AccelInfoPtr; +#endif xf86CursorInfoPtr HWCInfoPtr; FBLinearPtr pHWCPtr; |