diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:28 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:28 +0000 |
commit | a94ef4cf0b34e54548e560dae57d814ee3c6570a (patch) | |
tree | 719dd613a6c03c29e6a42f5b2ccf77684c0b1aba | |
parent | 8ae49542018d43a3596e095e1c1d0860872221c2 (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/newport_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newport_driver.c b/src/newport_driver.c index a6ca0a0..d1ce781 100644 --- a/src/newport_driver.c +++ b/src/newport_driver.c @@ -50,7 +50,7 @@ /* Xv Extension */ #include "xf86xv.h" -#include "Xv.h" +#include <X11/extensions/Xv.h> #define VERSION 4000 #define NEWPORT_NAME "NEWPORT" |