diff options
author | Thomas Hellstrom <thellstrom@vmware.com> | 2011-01-13 13:17:17 +0100 |
---|---|---|
committer | Thomas Hellstrom <thellstrom@vmware.com> | 2011-01-13 13:20:50 +0100 |
commit | 16e16390385d890b3666485a40369f4c690d5033 (patch) | |
tree | e665ab864e0b43554513c786e863149a7259d5a8 | |
parent | 5b30df47117bc65fd5f14667671041428e1d00b5 (diff) |
Fix crosscompile build for older Xservers
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
-rw-r--r-- | src/vmwaremodule.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vmwaremodule.c b/src/vmwaremodule.c index 2754879..a7ba854 100644 --- a/src/vmwaremodule.c +++ b/src/vmwaremodule.c @@ -26,14 +26,14 @@ #include <xorg-server.h> #include <xf86.h> -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - #ifdef HAVE_LIBDRM #include <xf86drm.h> #endif +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #ifndef HAVE_XORG_SERVER_1_5_0 #include <xf86_ansic.h> #include <xf86_libc.h> |