diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-07-03 07:37:33 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-07-03 07:37:33 +0000 |
commit | bf6ca6fc3ef9bd61284dc48059d10a560e5c1f28 (patch) | |
tree | c7d764dae30b1400bfdc5a2da6286e582eed02c3 /src/xkbout.c | |
parent | 70a39df3be6fcfea3746e0e127f3cde03a538869 (diff) |
Fix more include paths; add dix-config.h to XKB code.XORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901XORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15XORG-6_8_99_14
Diffstat (limited to 'src/xkbout.c')
-rw-r--r-- | src/xkbout.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/xkbout.c b/src/xkbout.c index cdf6995..b69fdfb 100644 --- a/src/xkbout.c +++ b/src/xkbout.c @@ -28,11 +28,10 @@ #ifdef HAVE_DIX_CONFIG_H #include <dix-config.h> -#endif - -#ifdef HAVE_CONFIG_H +#elif defined(HAVE_CONFIG_H) #include <config.h> #endif + #include <stdio.h> #include <ctype.h> #include <stdlib.h> @@ -49,19 +48,19 @@ #else -#include "X.h" +#include <X11/X.h> #define NEED_EVENTS #include <X11/keysym.h> -#include "Xproto.h" +#include <X11/Xproto.h> #include "misc.h" #include "inputstr.h" #include "dix.h" -#include "XKBstr.h" +#include <X11/extensions/XKBstr.h> #define XKBSRV_NEED_FILE_FUNCS 1 -#include "XKBsrv.h" +#include <X11/extensions/XKBsrv.h> #include <X11/extensions/XKBgeom.h> -#include "extensions/XKBfile.h" +#include <X11/extensions/XKBfile.h> #endif |