xf86-video-intel: src/intel_module.c

Chris Wilson ickle at kemper.freedesktop.org
Sat Jan 14 09:08:43 PST 2012


 src/intel_module.c |   18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

New commits:
commit 9c73dd91e90810116c215060bac434c5e8174f5f
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Sat Jan 14 17:00:01 2012 +0000

    Include <xorgVersion.h> to repair build
    
    intel_module.c:41:48: error: missing binary operator before token "("

diff --git a/src/intel_module.c b/src/intel_module.c
index 4a0d980..6e2af57 100644
--- a/src/intel_module.c
+++ b/src/intel_module.c
@@ -28,20 +28,22 @@
 #include "config.h"
 #endif
 
-#include "xf86.h"
-#include "xf86_OSproc.h"
-#include "xf86cmap.h"
-#include "xf86drmMode.h"
+#include <xf86.h>
+#include <xf86_OSproc.h>
+#include <xf86cmap.h>
+#include <xf86drmMode.h>
 
-#include "common.h"
-#include "intel_driver.h"
-#include "legacy/legacy.h"
-#include "sna/sna_module.h"
+#include <xorgVersion.h>
 
 #if XORG_VERSION_CURRENT < XORG_VERSION_NUMERIC(1,6,99,0,0)
 #include <xf86Resources.h>
 #endif
 
+#include "common.h"
+#include "intel_driver.h"
+#include "legacy/legacy.h"
+#include "sna/sna_module.h"
+
 static struct intel_device_info *chipset_info;
 
 static const struct intel_device_info intel_i81x_info = {


More information about the xorg-commit mailing list