diff options
author | Thomas Hellstrom <thellstrom@vmware.com> | 2011-01-27 11:02:44 +0100 |
---|---|---|
committer | Thomas Hellstrom <thellstrom@vmware.com> | 2011-01-27 11:02:44 +0100 |
commit | cc66e4a49a4a9ac90940d7866db5bc7621cb7e16 (patch) | |
tree | a61da50ebab4d529531570b459de61b078027551 | |
parent | d1ac343b8894a9b8a34c1dcf4b6aeb57239034c0 (diff) |
Fix crosscompile build for older Xservers v2
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
-rw-r--r-- | src/vmwaremodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vmwaremodule.c b/src/vmwaremodule.c index 2754879..33d3cff 100644 --- a/src/vmwaremodule.c +++ b/src/vmwaremodule.c @@ -23,9 +23,6 @@ * **********************************************************/ -#include <xorg-server.h> -#include <xf86.h> - #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -34,6 +31,9 @@ #include <xf86drm.h> #endif +#include <xorg-server.h> +#include <xf86.h> + #ifndef HAVE_XORG_SERVER_1_5_0 #include <xf86_ansic.h> #include <xf86_libc.h> |