diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-02-10 11:57:14 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-02-10 11:57:14 +0000 |
commit | 3169a4e53cf39cc3d5c18ac6add909aa3a58de7e (patch) | |
tree | f0261d34cdccccfeb04fcaf2f05c24a286d2c721 | |
parent | 71fbad64c5cfe6832a03815bece4c89d15253e1a (diff) |
sna: Reorder some includes so that compat-api.h comes after the headers it wraps2.21.1
Fixes the build in cases where the compat-api.h was defining macros to
subvert the real functions found in the xorg includes
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/sna/fb/fbpict.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sna/fb/fbpict.c b/src/sna/fb/fbpict.c index 349ec538..27bed148 100644 --- a/src/sna/fb/fbpict.c +++ b/src/sna/fb/fbpict.c @@ -25,13 +25,12 @@ #include <string.h> -#include "fb.h" - -#include <xorgVersion.h> #include <picturestr.h> #include <mipict.h> #include <fbpict.h> +#include "fb.h" + static void SourceValidateOnePicture(PicturePtr picture) { |