diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:23 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:23 +0000 |
commit | a467602c6c419bd7288d80ad50a6fa62aeff3ec8 (patch) | |
tree | 293a7afbb4572c4da429b2b23d0beea3639bf6fe | |
parent | 53407449153e20f7529ed9b403cee5aab25880d0 (diff) |
Fix includes right throughout the Xserver tree:sco_port_update-baseXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10sco_port_update
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.
-rw-r--r-- | src/dummy.h | 2 | ||||
-rw-r--r-- | src/dummy_driver.c | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/dummy.h b/src/dummy.h index 77a759d..e9dabe0 100644 --- a/src/dummy.h +++ b/src/dummy.h @@ -8,7 +8,7 @@ #include "xf86Cursor.h" #include "xf86xv.h" -#include "Xv.h" +#include <X11/extensions/Xv.h> /* Supported chipsets */ typedef enum { diff --git a/src/dummy_driver.c b/src/dummy_driver.c index 2e82ba1..1795d98 100644 --- a/src/dummy_driver.c +++ b/src/dummy_driver.c @@ -22,7 +22,7 @@ #include "micmap.h" /* identifying atom needed by magnifiers */ -#include "Xatom.h" +#include <X11/Xatom.h> #include "property.h" #include "xf86cmap.h" @@ -34,7 +34,7 @@ #include "picturestr.h" #include "xf86xv.h" -#include "Xv.h" +#include <X11/extensions/Xv.h> /* * Driver data structures. @@ -42,13 +42,13 @@ #include "dummy.h" /* These need to be checked */ -#include "X.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xproto.h> #include "scrnintstr.h" #include "servermd.h" #ifdef XFreeXDGA #define _XF86DGA_SERVER_ -#include "extensions/xf86dgastr.h" +#include <X11/extensions/xf86dgastr.h> #endif /* Mandatory functions */ |