diff options
author | Daniel Stone <daniel@fooishbar.org> | 2008-02-03 23:12:15 +1100 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2008-02-17 22:52:07 +0200 |
commit | 68bd7ac1930b5cffb6657b8d5f5bf8ae58eae8d9 (patch) | |
tree | fe9c70f389964b72002ddce66578392e4a103d05 /hw | |
parent | 37867626e314e74031378a8a4ff06f69b899a3b2 (diff) |
XKB: Move headers into the server tree
We need to start breaking the XKB API to enforce sanity, so drag whichever
headers we need to do so into the server tree, as the client API is set in
stone, being part of Xlib.
Diffstat (limited to 'hw')
-rw-r--r-- | hw/dmx/examples/xinput.c | 2 | ||||
-rw-r--r-- | hw/dmx/examples/xled.c | 2 | ||||
-rw-r--r-- | hw/xfree86/utils/xorgcfg/text-mode.c | 2 | ||||
-rw-r--r-- | hw/xfree86/utils/xorgconfig/xorgconfig.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/hw/dmx/examples/xinput.c b/hw/dmx/examples/xinput.c index 74353a93b..b6753e4ec 100644 --- a/hw/dmx/examples/xinput.c +++ b/hw/dmx/examples/xinput.c @@ -38,7 +38,7 @@ #include <X11/XKBlib.h> #include <X11/extensions/XInput.h> #include <X11/extensions/XKB.h> -#include <X11/extensions/XKBstr.h> +#include "xkbstr.h" #include <X11/extensions/dmxext.h> #include <sys/time.h> diff --git a/hw/dmx/examples/xled.c b/hw/dmx/examples/xled.c index 270f80511..322dda2f3 100644 --- a/hw/dmx/examples/xled.c +++ b/hw/dmx/examples/xled.c @@ -37,7 +37,7 @@ #include <X11/Xlib.h> #include <X11/XKBlib.h> #include <X11/extensions/XKB.h> -#include <X11/extensions/XKBstr.h> +#include "xkbstr.h" #include <sys/time.h> int main(int argc, char **argv) diff --git a/hw/xfree86/utils/xorgcfg/text-mode.c b/hw/xfree86/utils/xorgcfg/text-mode.c index 0b6e65482..c1fa67ed7 100644 --- a/hw/xfree86/utils/xorgcfg/text-mode.c +++ b/hw/xfree86/utils/xorgcfg/text-mode.c @@ -39,7 +39,7 @@ #endif #include <ctype.h> #include <X11/Xlib.h> -#include <X11/extensions/XKBstr.h> +#include "xkbstr.h" #include <X11/extensions/XKBrules.h> #include "cards.h" #include "config.h" diff --git a/hw/xfree86/utils/xorgconfig/xorgconfig.c b/hw/xfree86/utils/xorgconfig/xorgconfig.c index 30eb83182..d537abac4 100644 --- a/hw/xfree86/utils/xorgconfig/xorgconfig.c +++ b/hw/xfree86/utils/xorgconfig/xorgconfig.c @@ -106,7 +106,7 @@ #include <sys/stat.h> #include <X11/Xlib.h> -#include <X11/extensions/XKBstr.h> +#include "xkbstr.h" #include <X11/extensions/XKBrules.h> #define MAX_XKBOPTIONS 5 |