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:48 +00:00
commit 292c4cff26
672 changed files with 1649 additions and 1475 deletions

View file

@ -1,4 +1,4 @@
/* $XdotOrg: xc/programs/Xserver/os/xdmcp.c,v 1.3 2004/07/20 15:15:13 ago Exp $ */
/* $XdotOrg: xc/programs/Xserver/os/xdmcp.c,v 1.4 2004/11/15 15:06:50 ago Exp $ */
/* $Xorg: xdmcp.c,v 1.4 2001/01/31 13:37:19 pookie Exp $ */
/*
* Copyright 1989 Network Computing Devices, Inc., Mountain View, California.
@ -20,7 +20,7 @@
#include <Xwinsock.h>
#endif
#include "Xos.h"
#include <X11/Xos.h>
#if !defined(WIN32)
#ifndef Lynx
@ -35,10 +35,10 @@
#include <stdio.h>
#include <stdlib.h>
#include "X.h"
#include "Xmd.h"
#include <X11/X.h>
#include <X11/Xmd.h>
#include "misc.h"
#include "Xpoll.h"
#include <X11/Xpoll.h>
#include "osdep.h"
#include "input.h"
#include "dixstruct.h"