diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:23 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:23 +0000 |
commit | c63d55be53ac04503371ab72d1ffb8bd32e9369b (patch) | |
tree | e00395b87f52808bd22bc329ce6344a5a5a2028b | |
parent | 656a2a50ac5e7683f4e4285d57679d95042984c8 (diff) |
Fix includes right throughout the Xserver tree:sco_port_update-baseXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10
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/cyrix_driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cyrix_driver.c b/src/cyrix_driver.c index 5328aac..ae1137f 100644 --- a/src/cyrix_driver.c +++ b/src/cyrix_driver.c @@ -75,12 +75,12 @@ #ifdef XFreeXDGA #define _XF86DGA_SERVER_ -#include "extensions/xf86dgastr.h" +#include <X11/extensions/xf86dgastr.h> #endif #include "opaque.h" #define DPMS_SERVER -#include "extensions/dpms.h" +#include <X11/extensions/dpms.h> static const OptionInfoRec * CYRIXAvailableOptions(int chip, int busid); static void CYRIXIdentify(int flags); |