diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:48 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:48 +0000 |
commit | 292c4cff26687e6ef86c285b97813ab587daf009 (patch) | |
tree | b12025c2277345526ba7abd97222be0670e28198 /randr | |
parent | c062d7f96f47bdd31640be1fbce682d0774db3d9 (diff) |
Fix includes right throughout the Xserver tree:
change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h;
change "foo.h", "extensions/foo.h" and "X11/foo.h" to
<X11/extensions/foo.h> for extension headers, e.g. Xv.h;
change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.
Diffstat (limited to 'randr')
-rw-r--r-- | randr/mirandr.c | 2 | ||||
-rw-r--r-- | randr/randr.c | 12 | ||||
-rw-r--r-- | randr/randrstr.h | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/randr/mirandr.c b/randr/mirandr.c index 2f4653e5d..ac29485bb 100644 --- a/randr/mirandr.c +++ b/randr/mirandr.c @@ -27,7 +27,7 @@ #include "scrnintstr.h" #include "mi.h" -#include "randr.h" +#include <X11/extensions/randr.h> #include "randrstr.h" #include <stdio.h> diff --git a/randr/randr.c b/randr/randr.c index 44d5aafe9..cdb81a6d5 100644 --- a/randr/randr.c +++ b/randr/randr.c @@ -27,8 +27,8 @@ #define NEED_REPLIES #define NEED_EVENTS -#include "X.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xproto.h> #include "misc.h" #include "os.h" #include "dixstruct.h" @@ -38,14 +38,14 @@ #include "pixmapstr.h" #include "extnsionst.h" #include "servermd.h" -#include "randr.h" -#include "randrproto.h" +#include <X11/extensions/randr.h> +#include <X11/extensions/randrproto.h> #include "randrstr.h" #ifdef RENDER -#include "render.h" /* we share subpixel order information */ +#include <X11/extensions/render.h> /* we share subpixel order information */ #include "picturestr.h" #endif -#include "Xfuncproto.h" +#include <X11/Xfuncproto.h> #ifdef EXTMODULE #include "xf86_ansic.h" #endif diff --git a/randr/randrstr.h b/randr/randrstr.h index 758bb95dd..eecadd7b5 100644 --- a/randr/randrstr.h +++ b/randr/randrstr.h @@ -25,7 +25,7 @@ #ifndef _RANDRSTR_H_ #define _RANDRSTR_H_ -#include "randr.h" +#include <X11/extensions/randr.h> typedef struct _rrScreenRate { int rate; |