diff options
author | Jamey Sharp <jamey@minilop.net> | 2011-09-14 14:39:47 -0500 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2011-09-14 14:55:31 -0500 |
commit | 4ef61d6bf8b9141a4c2ee90bb25efd2485a42cf3 (patch) | |
tree | 792f7e55861d4df5eb8659ee89e837cc5ba76cc3 /src/client.h | |
parent | 8d80f2e415e9e58ca481fe52ae8f2290e25de898 (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/client.h')
-rw-r--r-- | src/client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.h b/src/client.h index 9a15ce9..c4f171e 100644 --- a/src/client.h +++ b/src/client.h @@ -29,8 +29,8 @@ * Nathaniel Way <nathanielcw@hotmail.com> */ -#include <xorg/colormap.h> -#include <xorg/misc.h> +#include <colormap.h> +#include <misc.h> #include "xf86Cursor.h" struct NestedClientPrivate; |