diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:29 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:29 +0000 |
commit | be455c98276cec6cc881ca0093476e244c765bf8 (patch) | |
tree | 24480ee8b89cd866a29df156376fd7668db3735a | |
parent | 4629f974734368bc354bbccaec80b72ec10a66a2 (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/savage_accel.c | 2 | ||||
-rw-r--r-- | src/savage_driver.c | 2 | ||||
-rw-r--r-- | src/savage_hwmc.c | 4 | ||||
-rw-r--r-- | src/savage_streams.c | 2 | ||||
-rw-r--r-- | src/savage_video.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/savage_accel.c b/src/savage_accel.c index f290f60..2bd8765 100644 --- a/src/savage_accel.c +++ b/src/savage_accel.c @@ -16,7 +16,7 @@ * */ -#include "Xarch.h" +#include <X11/Xarch.h> #include "xaalocal.h" #include "xaarop.h" #include "miline.h" diff --git a/src/savage_driver.c b/src/savage_driver.c index ec545cc..08bfc0f 100644 --- a/src/savage_driver.c +++ b/src/savage_driver.c @@ -17,7 +17,7 @@ #include "globals.h" #define DPMS_SERVER -#include "extensions/dpms.h" +#include <X11/extensions/dpms.h> #include "xf86xv.h" diff --git a/src/savage_hwmc.c b/src/savage_hwmc.c index a8fe005..b0c2bd8 100644 --- a/src/savage_hwmc.c +++ b/src/savage_hwmc.c @@ -37,8 +37,8 @@ #include "xf86xv.h" #include "xf86xvmc.h" -#include "Xv.h" -#include "XvMC.h" +#include <X11/extensions/Xv.h> +#include <X11/extensions/XvMC.h> #include "xaa.h" #include "xaalocal.h" #include "dixstruct.h" diff --git a/src/savage_streams.c b/src/savage_streams.c index 2fe2c25..ef4d815 100644 --- a/src/savage_streams.c +++ b/src/savage_streams.c @@ -1,4 +1,4 @@ -#include "Xv.h" +#include <X11/extensions/Xv.h> #include "dix.h" #include "dixstruct.h" diff --git a/src/savage_video.c b/src/savage_video.c index c354d25..d62d3c4 100644 --- a/src/savage_video.c +++ b/src/savage_video.c @@ -1,6 +1,6 @@ /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/savage/savage_video.c,v 1.17tsi Exp $ */ -#include "Xv.h" +#include <X11/extensions/Xv.h> #include "dix.h" #include "dixstruct.h" #include "fourcc.h" |