summaryrefslogtreecommitdiff
path: root/src/input.c
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2011-09-14 14:39:47 -0500
committerJamey Sharp <jamey@minilop.net>2011-09-14 14:55:31 -0500
commit4ef61d6bf8b9141a4c2ee90bb25efd2485a42cf3 (patch)
tree792f7e55861d4df5eb8659ee89e837cc5ba76cc3 /src/input.c
parent8d80f2e415e9e58ca481fe52ae8f2290e25de898 (diff)
Fix #includes when xserver is in a non-standard prefix.
Jeremy Huddleston tried building this with xserver's --prefix set to /opt/Xorg and found that these #includes only worked so far by coincidence. Signed-off-by: Jamey Sharp <jamey@minilop.net> Tested-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'src/input.c')
-rw-r--r--src/input.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/input.c b/src/input.c
index fac3537..bd5e11e 100644
--- a/src/input.c
+++ b/src/input.c
@@ -36,15 +36,15 @@
#include <string.h>
#include <unistd.h>
-#include <xorg/xorg-server.h>
-#include <xorg/fb.h>
-#include <xorg/micmap.h>
-#include <xorg/mipointer.h>
-#include <xorg/shadow.h>
-#include <xorg/xf86.h>
-#include <xorg/xf86Module.h>
-#include <xorg/xf86str.h>
-#include <xorg/xf86_OSproc.h>
+#include <xorg-server.h>
+#include <fb.h>
+#include <micmap.h>
+#include <mipointer.h>
+#include <shadow.h>
+#include <xf86.h>
+#include <xf86Module.h>
+#include <xf86str.h>
+#include <xf86_OSproc.h>
#include "config.h"