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 /ilbm | |
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 'ilbm')
-rw-r--r-- | ilbm/ilbmbitblt.c | 4 | ||||
-rw-r--r-- | ilbm/ilbmblt.c | 6 | ||||
-rw-r--r-- | ilbm/ilbmbres.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmbresd.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmbstore.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmclip.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmcmap.c | 4 | ||||
-rw-r--r-- | ilbm/ilbmfillarc.c | 4 | ||||
-rw-r--r-- | ilbm/ilbmfillrct.c | 4 | ||||
-rw-r--r-- | ilbm/ilbmfillsp.c | 4 | ||||
-rw-r--r-- | ilbm/ilbmfont.c | 6 | ||||
-rw-r--r-- | ilbm/ilbmgc.c | 6 | ||||
-rw-r--r-- | ilbm/ilbmgetsp.c | 4 | ||||
-rw-r--r-- | ilbm/ilbmhrzvert.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmimage.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmimggblt.c | 6 | ||||
-rw-r--r-- | ilbm/ilbmline.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmmisc.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmpixmap.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmply1rct.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmplygblt.c | 6 | ||||
-rw-r--r-- | ilbm/ilbmpntarea.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmpntwin.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmpolypnt.c | 4 | ||||
-rw-r--r-- | ilbm/ilbmpushpxl.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmscrinit.c | 6 | ||||
-rw-r--r-- | ilbm/ilbmsetsp.c | 4 | ||||
-rw-r--r-- | ilbm/ilbmtegblt.c | 6 | ||||
-rw-r--r-- | ilbm/ilbmtile.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmwindow.c | 2 | ||||
-rw-r--r-- | ilbm/ilbmzerarc.c | 4 |
31 files changed, 54 insertions, 54 deletions
diff --git a/ilbm/ilbmbitblt.c b/ilbm/ilbmbitblt.c index f861b93e9..ad944025e 100644 --- a/ilbm/ilbmbitblt.c +++ b/ilbm/ilbmbitblt.c @@ -52,8 +52,8 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xprotostr.h" +#include <X11/X.h> +#include <X11/Xprotostr.h> #include "miscstruct.h" #include "regionstr.h" diff --git a/ilbm/ilbmblt.c b/ilbm/ilbmblt.c index 286a82474..1f8434012 100644 --- a/ilbm/ilbmblt.c +++ b/ilbm/ilbmblt.c @@ -36,9 +36,9 @@ Author: Keith Packard /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "ilbm.h" #include "gcstruct.h" #include "windowstr.h" diff --git a/ilbm/ilbmbres.c b/ilbm/ilbmbres.c index 931da54fd..57142256d 100644 --- a/ilbm/ilbmbres.c +++ b/ilbm/ilbmbres.c @@ -52,7 +52,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "misc.h" #include "ilbm.h" #include "maskbits.h" diff --git a/ilbm/ilbmbresd.c b/ilbm/ilbmbresd.c index 1cd456bb1..20d078f6a 100644 --- a/ilbm/ilbmbresd.c +++ b/ilbm/ilbmbresd.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "misc.h" #include "ilbm.h" #include "maskbits.h" diff --git a/ilbm/ilbmbstore.c b/ilbm/ilbmbstore.c index 2a12a39bc..af72db549 100644 --- a/ilbm/ilbmbstore.c +++ b/ilbm/ilbmbstore.c @@ -35,7 +35,7 @@ from the X Consortium. to use interleaved bitplanes instead of normal bitplanes */ #include "ilbm.h" -#include "X.h" +#include <X11/X.h> #include "mibstore.h" #include "regionstr.h" #include "scrnintstr.h" diff --git a/ilbm/ilbmclip.c b/ilbm/ilbmclip.c index 72d143e18..6aa654b17 100644 --- a/ilbm/ilbmclip.c +++ b/ilbm/ilbmclip.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "miscstruct.h" #include "pixmapstr.h" #include "scrnintstr.h" diff --git a/ilbm/ilbmcmap.c b/ilbm/ilbmcmap.c index 06da361e2..37bfcfd48 100644 --- a/ilbm/ilbmcmap.c +++ b/ilbm/ilbmcmap.c @@ -32,8 +32,8 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#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/ilbm/ilbmfillarc.c b/ilbm/ilbmfillarc.c index 28f2df91d..f61a01643 100644 --- a/ilbm/ilbmfillarc.c +++ b/ilbm/ilbmfillarc.c @@ -31,8 +31,8 @@ in this Software without prior written authorization from the X Consortium. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#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/ilbm/ilbmfillrct.c b/ilbm/ilbmfillrct.c index 4c2507487..734319240 100644 --- a/ilbm/ilbmfillrct.c +++ b/ilbm/ilbmfillrct.c @@ -52,8 +52,8 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xprotostr.h" +#include <X11/X.h> +#include <X11/Xprotostr.h> #include "pixmapstr.h" #include "gcstruct.h" #include "windowstr.h" diff --git a/ilbm/ilbmfillsp.c b/ilbm/ilbmfillsp.c index f7fe90743..95eb220ac 100644 --- a/ilbm/ilbmfillsp.c +++ b/ilbm/ilbmfillsp.c @@ -52,8 +52,8 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "gcstruct.h" #include "window.h" #include "pixmapstr.h" diff --git a/ilbm/ilbmfont.c b/ilbm/ilbmfont.c index 05e89bd8d..c39f0785d 100644 --- a/ilbm/ilbmfont.c +++ b/ilbm/ilbmfont.c @@ -51,9 +51,9 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "ilbm.h" #include "fontstruct.h" #include "dixfontstr.h" diff --git a/ilbm/ilbmgc.c b/ilbm/ilbmgc.c index 259935c46..646ed1646 100644 --- a/ilbm/ilbmgc.c +++ b/ilbm/ilbmgc.c @@ -51,9 +51,9 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "ilbm.h" #include "dixfontstr.h" #include "fontstruct.h" diff --git a/ilbm/ilbmgetsp.c b/ilbm/ilbmgetsp.c index e6adbae4a..121174fa2 100644 --- a/ilbm/ilbmgetsp.c +++ b/ilbm/ilbmgetsp.c @@ -52,8 +52,8 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "misc.h" #include "region.h" diff --git a/ilbm/ilbmhrzvert.c b/ilbm/ilbmhrzvert.c index 277ac722a..7105e458b 100644 --- a/ilbm/ilbmhrzvert.c +++ b/ilbm/ilbmhrzvert.c @@ -52,7 +52,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "gc.h" #include "window.h" diff --git a/ilbm/ilbmimage.c b/ilbm/ilbmimage.c index 348d593a3..ecaad9029 100644 --- a/ilbm/ilbmimage.c +++ b/ilbm/ilbmimage.c @@ -4,7 +4,7 @@ /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "windowstr.h" #include "pixmapstr.h" #include "scrnintstr.h" diff --git a/ilbm/ilbmimggblt.c b/ilbm/ilbmimggblt.c index 24143fba3..b5802ae7d 100644 --- a/ilbm/ilbmimggblt.c +++ b/ilbm/ilbmimggblt.c @@ -52,9 +52,9 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "ilbm.h" #include "fontstruct.h" #include "dixfontstr.h" diff --git a/ilbm/ilbmline.c b/ilbm/ilbmline.c index 49dd7da46..5bf832a76 100644 --- a/ilbm/ilbmline.c +++ b/ilbm/ilbmline.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "gcstruct.h" #include "windowstr.h" diff --git a/ilbm/ilbmmisc.c b/ilbm/ilbmmisc.c index 9717aceca..c9aa4c792 100644 --- a/ilbm/ilbmmisc.c +++ b/ilbm/ilbmmisc.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "misc.h" #include "cursor.h" #include "scrnintstr.h" diff --git a/ilbm/ilbmpixmap.c b/ilbm/ilbmpixmap.c index 01b991892..825b18267 100644 --- a/ilbm/ilbmpixmap.c +++ b/ilbm/ilbmpixmap.c @@ -57,7 +57,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "Xmd.h" +#include <X11/Xmd.h> #include "scrnintstr.h" #include "pixmapstr.h" #include "maskbits.h" diff --git a/ilbm/ilbmply1rct.c b/ilbm/ilbmply1rct.c index 41d4545e4..6fdef5d4b 100644 --- a/ilbm/ilbmply1rct.c +++ b/ilbm/ilbmply1rct.c @@ -31,7 +31,7 @@ in this Software without prior written authorization from the X Consortium. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "gcstruct.h" #include "windowstr.h" diff --git a/ilbm/ilbmplygblt.c b/ilbm/ilbmplygblt.c index fdd0a071f..173f7b985 100644 --- a/ilbm/ilbmplygblt.c +++ b/ilbm/ilbmplygblt.c @@ -52,9 +52,9 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "ilbm.h" #include "fontstruct.h" #include "dixfontstr.h" diff --git a/ilbm/ilbmpntarea.c b/ilbm/ilbmpntarea.c index 497eb50ee..77de2c480 100644 --- a/ilbm/ilbmpntarea.c +++ b/ilbm/ilbmpntarea.c @@ -52,7 +52,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "windowstr.h" #include "regionstr.h" diff --git a/ilbm/ilbmpntwin.c b/ilbm/ilbmpntwin.c index 787955a87..4d4c45816 100644 --- a/ilbm/ilbmpntwin.c +++ b/ilbm/ilbmpntwin.c @@ -52,7 +52,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "windowstr.h" #include "regionstr.h" diff --git a/ilbm/ilbmpolypnt.c b/ilbm/ilbmpolypnt.c index e35b85416..0dc6df674 100644 --- a/ilbm/ilbmpolypnt.c +++ b/ilbm/ilbmpolypnt.c @@ -52,8 +52,8 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xprotostr.h" +#include <X11/X.h> +#include <X11/Xprotostr.h> #include "pixmapstr.h" #include "gcstruct.h" #include "windowstr.h" diff --git a/ilbm/ilbmpushpxl.c b/ilbm/ilbmpushpxl.c index 5bedef851..9f1b26ea2 100644 --- a/ilbm/ilbmpushpxl.c +++ b/ilbm/ilbmpushpxl.c @@ -51,7 +51,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "gcstruct.h" #include "scrnintstr.h" #include "pixmapstr.h" diff --git a/ilbm/ilbmscrinit.c b/ilbm/ilbmscrinit.c index f8b4eb52d..8fb1baa32 100644 --- a/ilbm/ilbmscrinit.c +++ b/ilbm/ilbmscrinit.c @@ -51,9 +51,9 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xproto.h" /* for xColorItem */ -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xproto.h> /* for xColorItem */ +#include <X11/Xmd.h> #include "scrnintstr.h" #include "pixmapstr.h" #include "windowstr.h" diff --git a/ilbm/ilbmsetsp.c b/ilbm/ilbmsetsp.c index 55073817d..46bb3a262 100644 --- a/ilbm/ilbmsetsp.c +++ b/ilbm/ilbmsetsp.c @@ -52,8 +52,8 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xmd.h" +#include <X11/X.h> +#include <X11/Xmd.h> #include "misc.h" #include "regionstr.h" diff --git a/ilbm/ilbmtegblt.c b/ilbm/ilbmtegblt.c index 2c39ef7a9..0f6a8e535 100644 --- a/ilbm/ilbmtegblt.c +++ b/ilbm/ilbmtegblt.c @@ -52,9 +52,9 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xmd.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xmd.h> +#include <X11/Xproto.h> #include "ilbm.h" #include "fontstruct.h" #include "dixfontstr.h" diff --git a/ilbm/ilbmtile.c b/ilbm/ilbmtile.c index d6e815405..4d9db06e9 100644 --- a/ilbm/ilbmtile.c +++ b/ilbm/ilbmtile.c @@ -52,7 +52,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "windowstr.h" #include "regionstr.h" diff --git a/ilbm/ilbmwindow.c b/ilbm/ilbmwindow.c index fbf543de4..74944ea54 100644 --- a/ilbm/ilbmwindow.c +++ b/ilbm/ilbmwindow.c @@ -52,7 +52,7 @@ SOFTWARE. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" +#include <X11/X.h> #include "scrnintstr.h" #include "windowstr.h" #include "ilbm.h" diff --git a/ilbm/ilbmzerarc.c b/ilbm/ilbmzerarc.c index 9ac30e267..f5a58ea5d 100644 --- a/ilbm/ilbmzerarc.c +++ b/ilbm/ilbmzerarc.c @@ -37,8 +37,8 @@ in this Software without prior written authorization from the X Consortium. /* Modified jun 95 by Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) to use interleaved bitplanes instead of normal bitplanes */ -#include "X.h" -#include "Xprotostr.h" +#include <X11/X.h> +#include <X11/Xprotostr.h> #include "miscstruct.h" #include "gcstruct.h" #include "pixmapstr.h" |