diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:30 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:30 +0000 |
commit | 74b13899c20fcbe5030fbf6891e3931a2de9b50f (patch) | |
tree | cecc47e938565534e022aab384311f4e6294b3ce | |
parent | f4d45d198607956fb059941905b990be952fd33f (diff) |
Fix includes right throughout the Xserver tree:sco_port_update-baseXORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4
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/ffb.h | 4 | ||||
-rw-r--r-- | src/ffb_dbe.c | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -34,7 +34,7 @@ #include "xf86_ansic.h" #include "xf86RamDac.h" #include "xaa.h" -#include "Xmd.h" +#include <X11/Xmd.h> #include "gcstruct.h" #include "windowstr.h" #include "ffb_regs.h" @@ -47,7 +47,7 @@ #ifndef DPMS_SERVER #define DPMS_SERVER #endif /* DPMS_SERVER */ -#include "extensions/dpms.h" +#include <X11/extensions/dpms.h> /* Various offsets in virtual (ie. mmap()) spaces Linux and Solaris support. */ diff --git a/src/ffb_dbe.c b/src/ffb_dbe.c index 09395f7..f8317cf 100644 --- a/src/ffb_dbe.c +++ b/src/ffb_dbe.c @@ -21,12 +21,12 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ -/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_dbe.c,v 1.2 2003/02/11 03:19:02 dawes Exp $ */ +/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_dbe.c,v 1.1 2000/05/23 04:47:44 dawes Exp $ */ #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 "windowstr.h" |