xf86-video-intel: src/ch7017/ch7017.c src/ch7xxx/ch7xxx.c src/sil164/sil164.c src/tfp410/tfp410.c

Jesse Barnes jbarnes at kemper.freedesktop.org
Wed Mar 12 12:41:28 PDT 2008


 src/ch7017/ch7017.c |    1 +
 src/ch7xxx/ch7xxx.c |    1 +
 src/sil164/sil164.c |    2 ++
 src/tfp410/tfp410.c |    2 ++
 4 files changed, 6 insertions(+)

New commits:
commit 907399660b83b3939aab3dc7d0697197441e4ec8
Author: Jesse Barnes <jbarnes at nietzche.virtuousgeek.org>
Date:   Wed Mar 12 12:33:36 2008 -0700

    Add stdint.h to DVO drivers
    
    Fixes the build for me (just following the git development guide on a
    new machine).

diff --git a/src/ch7017/ch7017.c b/src/ch7017/ch7017.c
index f685965..759fc24 100644
--- a/src/ch7017/ch7017.c
+++ b/src/ch7017/ch7017.c
@@ -29,6 +29,7 @@
 #include "config.h"
 #endif
 
+#include <stdint.h>
 #include <unistd.h>
 
 #include "xf86.h"
diff --git a/src/ch7xxx/ch7xxx.c b/src/ch7xxx/ch7xxx.c
index 3309a56..8a439e4 100644
--- a/src/ch7xxx/ch7xxx.c
+++ b/src/ch7xxx/ch7xxx.c
@@ -30,6 +30,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 #include "config.h"
 #endif
 
+#include <stdint.h>
 #include <string.h>
 #include "xf86.h"
 #include "xf86_OSproc.h"
diff --git a/src/sil164/sil164.c b/src/sil164/sil164.c
index 0c32545..410a681 100644
--- a/src/sil164/sil164.c
+++ b/src/sil164/sil164.c
@@ -31,6 +31,8 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 #include "config.h"
 #endif
 
+#include <stdint.h>
+
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86Resources.h"
diff --git a/src/tfp410/tfp410.c b/src/tfp410/tfp410.c
index 81a6d0a..c2c4fc3 100644
--- a/src/tfp410/tfp410.c
+++ b/src/tfp410/tfp410.c
@@ -30,6 +30,8 @@
 #include "config.h"
 #endif
 
+#include <stdint.h>
+
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86Resources.h"


More information about the xorg-commit mailing list