summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy White <jwhite@codeweavers.com>2012-08-08 14:58:36 -0500
committerJeremy White <jwhite@codeweavers.com>2012-09-29 09:25:42 -0500
commit10d6e8ee3e59655c32c2d518cc6686eff902c6dc (patch)
treeccc2c91d6d40be84b14ee0d59221eef235fea9da
parentd8bb331784792bfd35bf158875b434243f0fe019 (diff)
Change include paths to fix rare compilation issue.
Technically, the xorg/ prefix should not be specified. It generally works, because xorg/ is usually hung off /usr/include. This enables compliation that correctly respects a pkg-config --cflags xorg-server.
-rw-r--r--src/spiceqxl_inputs.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/spiceqxl_inputs.c b/src/spiceqxl_inputs.c
index 898ef40..3c22d00 100644
--- a/src/spiceqxl_inputs.c
+++ b/src/spiceqxl_inputs.c
@@ -27,12 +27,12 @@
#include "config.h"
#endif
-#include <xorg/xf86Xinput.h>
-#include <xorg/exevents.h>
-#include <xorg/xserver-properties.h>
-#include <xorg/list.h>
-#include <xorg/input.h>
-#include <xorg/xkbsrv.h>
+#include <xf86Xinput.h>
+#include <exevents.h>
+#include <xserver-properties.h>
+#include <list.h>
+#include <input.h>
+#include <xkbsrv.h>
#include <spice.h>
#include "qxl.h"
#include "spiceqxl_inputs.h"