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 /iplan2p4 | |
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 'iplan2p4')
-rw-r--r-- | iplan2p4/ipl.h | 2 | ||||
-rw-r--r-- | iplan2p4/iplallpriv.c | 4 | ||||
-rw-r--r-- | iplan2p4/iplbitblt.c | 6 | ||||
-rw-r--r-- | iplan2p4/iplblt.c | 6 | ||||
-rw-r--r-- | iplan2p4/iplbres.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplbresd.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplbstore.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplcmap.c | 4 | ||||
-rw-r--r-- | iplan2p4/iplfillarc.c | 4 | ||||
-rw-r--r-- | iplan2p4/iplfillrct.c | 4 | ||||
-rw-r--r-- | iplan2p4/iplfillsp.c | 4 | ||||
-rw-r--r-- | iplan2p4/iplgc.c | 6 | ||||
-rw-r--r-- | iplan2p4/iplgetsp.c | 4 | ||||
-rw-r--r-- | iplan2p4/iplhrzvert.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplimage.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplline.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplmergerop.h | 2 | ||||
-rw-r--r-- | iplan2p4/iplpixmap.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplply1rct.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplpntwin.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplpolypnt.c | 2 | ||||
-rw-r--r-- | iplan2p4/iplrrop.c | 6 | ||||
-rw-r--r-- | iplan2p4/iplscrinit.c | 4 | ||||
-rw-r--r-- | iplan2p4/iplsetsp.c | 4 | ||||
-rw-r--r-- | iplan2p4/iplsolid.c | 4 | ||||
-rw-r--r-- | iplan2p4/ipltegblt.c | 6 | ||||
-rw-r--r-- | iplan2p4/ipltile32.c | 4 | ||||
-rw-r--r-- | iplan2p4/ipltileodd.c | 4 | ||||
-rw-r--r-- | iplan2p4/iplwindow.c | 2 |
29 files changed, 50 insertions, 50 deletions
diff --git a/iplan2p4/ipl.h b/iplan2p4/ipl.h index cc4e519ce..d6cf45b14 100644 --- a/iplan2p4/ipl.h +++ b/iplan2p4/ipl.h @@ -32,7 +32,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "pixmap.h" #include "region.h" #include "gc.h" diff --git a/iplan2p4/iplallpriv.c b/iplan2p4/iplallpriv.c index 11e358944..eadca0a01 100644 --- a/iplan2p4/iplallpriv.c +++ b/iplan2p4/iplallpriv.c @@ -31,8 +31,8 @@ in this Software without prior written authorization from the X Consortium. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "servermd.h" #include "scrnintstr.h" #include "pixmapstr.h" diff --git a/iplan2p4/iplbitblt.c b/iplan2p4/iplbitblt.c index 9105faa48..7c157aad6 100644 --- a/iplan2p4/iplbitblt.c +++ b/iplan2p4/iplbitblt.c @@ -36,9 +36,9 @@ Author: Keith Packard /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "gcstruct.h" #include "windowstr.h" #include "scrnintstr.h" diff --git a/iplan2p4/iplblt.c b/iplan2p4/iplblt.c index f303859cd..850ee5c43 100644 --- a/iplan2p4/iplblt.c +++ b/iplan2p4/iplblt.c @@ -36,9 +36,9 @@ Author: Keith Packard /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "gcstruct.h" #include "windowstr.h" #include "scrnintstr.h" diff --git a/iplan2p4/iplbres.c b/iplan2p4/iplbres.c index 47b895ea4..db92c6bc4 100644 --- a/iplan2p4/iplbres.c +++ b/iplan2p4/iplbres.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "misc.h" #include "ipl.h" #include "servermd.h" diff --git a/iplan2p4/iplbresd.c b/iplan2p4/iplbresd.c index dd096dfbd..dd4afddda 100644 --- a/iplan2p4/iplbresd.c +++ b/iplan2p4/iplbresd.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "misc.h" #include "ipl.h" #include "miline.h" diff --git a/iplan2p4/iplbstore.c b/iplan2p4/iplbstore.c index 422d10291..64874a407 100644 --- a/iplan2p4/iplbstore.c +++ b/iplan2p4/iplbstore.c @@ -25,7 +25,7 @@ static char rcsid[] = interleaved planes */ #include "ipl.h" -#include "X.h" +#include <X11/X.h> #include "mibstore.h" #include "regionstr.h" #include "scrnintstr.h" diff --git a/iplan2p4/iplcmap.c b/iplan2p4/iplcmap.c index 3b73b1481..a6e8f2184 100644 --- a/iplan2p4/iplcmap.c +++ b/iplan2p4/iplcmap.c @@ -32,8 +32,8 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xproto.h> #include "scrnintstr.h" #include "colormapst.h" #include "resource.h" diff --git a/iplan2p4/iplfillarc.c b/iplan2p4/iplfillarc.c index 50e4a81ab..62571114a 100644 --- a/iplan2p4/iplfillarc.c +++ b/iplan2p4/iplfillarc.c @@ -31,8 +31,8 @@ in this Software without prior written authorization from the X Consortium. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xprotostr.h" +#include <X11/X.h> +#include <X11/Xprotostr.h> #include "miscstruct.h" #include "gcstruct.h" #include "pixmapstr.h" diff --git a/iplan2p4/iplfillrct.c b/iplan2p4/iplfillrct.c index 7af2fa4fa..40b9d435c 100644 --- a/iplan2p4/iplfillrct.c +++ b/iplan2p4/iplfillrct.c @@ -34,8 +34,8 @@ in this Software without prior written authorization from the X Consortium. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "servermd.h" #include "gcstruct.h" #include "window.h" diff --git a/iplan2p4/iplfillsp.c b/iplan2p4/iplfillsp.c index 767db30cb..5bf0b0b50 100644 --- a/iplan2p4/iplfillsp.c +++ b/iplan2p4/iplfillsp.c @@ -81,8 +81,8 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "servermd.h" #include "gcstruct.h" #include "window.h" diff --git a/iplan2p4/iplgc.c b/iplan2p4/iplgc.c index 8a69cb7c8..925f34909 100644 --- a/iplan2p4/iplgc.c +++ b/iplan2p4/iplgc.c @@ -52,9 +52,9 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "ipl.h" #include "fontstruct.h" #include "dixfontstr.h" diff --git a/iplan2p4/iplgetsp.c b/iplan2p4/iplgetsp.c index 8ae61b6cc..7f742885b 100644 --- a/iplan2p4/iplgetsp.c +++ b/iplan2p4/iplgetsp.c @@ -51,8 +51,8 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "servermd.h" #include "misc.h" diff --git a/iplan2p4/iplhrzvert.c b/iplan2p4/iplhrzvert.c index 1bcb57d57..621b55ba5 100644 --- a/iplan2p4/iplhrzvert.c +++ b/iplan2p4/iplhrzvert.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "gc.h" #include "window.h" diff --git a/iplan2p4/iplimage.c b/iplan2p4/iplimage.c index 6c8e9ab73..644fd3c07 100644 --- a/iplan2p4/iplimage.c +++ b/iplan2p4/iplimage.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "windowstr.h" #include "pixmapstr.h" #include "scrnintstr.h" diff --git a/iplan2p4/iplline.c b/iplan2p4/iplline.c index f59638693..19f230e07 100644 --- a/iplan2p4/iplline.c +++ b/iplan2p4/iplline.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "gcstruct.h" #include "windowstr.h" diff --git a/iplan2p4/iplmergerop.h b/iplan2p4/iplmergerop.h index 22f3b4d5f..bd3736759 100644 --- a/iplan2p4/iplmergerop.h +++ b/iplan2p4/iplmergerop.h @@ -18,7 +18,7 @@ interleaved planes */ */ #ifndef GXcopy -#include "X.h" +#include <X11/X.h> #endif typedef struct _mergeRopBits { diff --git a/iplan2p4/iplpixmap.c b/iplan2p4/iplpixmap.c index 7800e8d96..9a1e35852 100644 --- a/iplan2p4/iplpixmap.c +++ b/iplan2p4/iplpixmap.c @@ -56,7 +56,7 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "Xmd.h" +#include <X11/Xmd.h> #include "servermd.h" #include "scrnintstr.h" #include "pixmapstr.h" diff --git a/iplan2p4/iplply1rct.c b/iplan2p4/iplply1rct.c index fc73f2065..6d172a16b 100644 --- a/iplan2p4/iplply1rct.c +++ b/iplan2p4/iplply1rct.c @@ -31,7 +31,7 @@ in this Software without prior written authorization from the X Consortium. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "gcstruct.h" #include "windowstr.h" diff --git a/iplan2p4/iplpntwin.c b/iplan2p4/iplpntwin.c index 88dbad6bf..d58d4bb1f 100644 --- a/iplan2p4/iplpntwin.c +++ b/iplan2p4/iplpntwin.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "windowstr.h" #include "regionstr.h" diff --git a/iplan2p4/iplpolypnt.c b/iplan2p4/iplpolypnt.c index 763733a04..3bcd48360 100644 --- a/iplan2p4/iplpolypnt.c +++ b/iplan2p4/iplpolypnt.c @@ -31,7 +31,7 @@ in this Software without prior written authorization from the X Consortium. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "gcstruct.h" #include "windowstr.h" #include "pixmapstr.h" diff --git a/iplan2p4/iplrrop.c b/iplan2p4/iplrrop.c index 75ec557ee..dc3bad6a7 100644 --- a/iplan2p4/iplrrop.c +++ b/iplan2p4/iplrrop.c @@ -33,9 +33,9 @@ interleaved planes */ /* ipl reduced rasterop computations */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "ipl.h" #include "iplmskbits.h" diff --git a/iplan2p4/iplscrinit.c b/iplan2p4/iplscrinit.c index 00dbef074..825d4f9d2 100644 --- a/iplan2p4/iplscrinit.c +++ b/iplan2p4/iplscrinit.c @@ -32,8 +32,8 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "servermd.h" #include "scrnintstr.h" #include "pixmapstr.h" diff --git a/iplan2p4/iplsetsp.c b/iplan2p4/iplsetsp.c index 52eefc31d..e71222614 100644 --- a/iplan2p4/iplsetsp.c +++ b/iplan2p4/iplsetsp.c @@ -51,8 +51,8 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "servermd.h" #include "misc.h" diff --git a/iplan2p4/iplsolid.c b/iplan2p4/iplsolid.c index 447193b27..7875f7903 100644 --- a/iplan2p4/iplsolid.c +++ b/iplan2p4/iplsolid.c @@ -31,8 +31,8 @@ in this Software without prior written authorization from the X Consortium. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "servermd.h" #include "gcstruct.h" #include "window.h" diff --git a/iplan2p4/ipltegblt.c b/iplan2p4/ipltegblt.c index 8414bc7b2..167bc25a1 100644 --- a/iplan2p4/ipltegblt.c +++ b/iplan2p4/ipltegblt.c @@ -51,9 +51,9 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "ipl.h" #include "fontstruct.h" #include "dixfontstr.h" diff --git a/iplan2p4/ipltile32.c b/iplan2p4/ipltile32.c index 6774de834..5a5e04080 100644 --- a/iplan2p4/ipltile32.c +++ b/iplan2p4/ipltile32.c @@ -35,8 +35,8 @@ in this Software without prior written authorization from the X Consortium. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "servermd.h" #include "gcstruct.h" #include "window.h" diff --git a/iplan2p4/ipltileodd.c b/iplan2p4/ipltileodd.c index abd4a3021..32ffadbe4 100644 --- a/iplan2p4/ipltileodd.c +++ b/iplan2p4/ipltileodd.c @@ -35,8 +35,8 @@ in this Software without prior written authorization from the X Consortium. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "servermd.h" #include "gcstruct.h" #include "window.h" diff --git a/iplan2p4/iplwindow.c b/iplan2p4/iplwindow.c index 8d95e284b..c8cd4c133 100644 --- a/iplan2p4/iplwindow.c +++ b/iplan2p4/iplwindow.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified nov 94 by Martin Schaller (Martin_Schaller@maus.r.de) for use with interleaved planes */ -#include "X.h" +#include <X11/X.h> #include "scrnintstr.h" #include "windowstr.h" #include "ipl.h" |