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.
This commit is contained in:
Daniel Stone 2005-04-20 12:25:23 +00:00
parent 5340744915
commit a467602c6c
2 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@
#include "xf86Cursor.h" #include "xf86Cursor.h"
#include "xf86xv.h" #include "xf86xv.h"
#include "Xv.h" #include <X11/extensions/Xv.h>
/* Supported chipsets */ /* Supported chipsets */
typedef enum { typedef enum {

View File

@ -22,7 +22,7 @@
#include "micmap.h" #include "micmap.h"
/* identifying atom needed by magnifiers */ /* identifying atom needed by magnifiers */
#include "Xatom.h" #include <X11/Xatom.h>
#include "property.h" #include "property.h"
#include "xf86cmap.h" #include "xf86cmap.h"
@ -34,7 +34,7 @@
#include "picturestr.h" #include "picturestr.h"
#include "xf86xv.h" #include "xf86xv.h"
#include "Xv.h" #include <X11/extensions/Xv.h>
/* /*
* Driver data structures. * Driver data structures.
@ -42,13 +42,13 @@
#include "dummy.h" #include "dummy.h"
/* These need to be checked */ /* These need to be checked */
#include "X.h" #include <X11/X.h>
#include "Xproto.h" #include <X11/Xproto.h>
#include "scrnintstr.h" #include "scrnintstr.h"
#include "servermd.h" #include "servermd.h"
#ifdef XFreeXDGA #ifdef XFreeXDGA
#define _XF86DGA_SERVER_ #define _XF86DGA_SERVER_
#include "extensions/xf86dgastr.h" #include <X11/extensions/xf86dgastr.h>
#endif #endif
/* Mandatory functions */ /* Mandatory functions */