[xserver-commit] xfree86/drivers/tdfx tdfx_accel.c,1.20,1.21 tdfx_dga.c,1.6,1.7 tdfx_dri.c,1.26,1.27 tdfx_driver.c,1.105,1.106 tdfx_hwcurs.c,1.5,1.6 tdfx_io.c,1.7,1.8 tdfx_priv.c,1.16,1.17 tdfx_sli.c,1.7,1.8 tdfx_video.c,1.21,1.22

Keith Packard xserver-commit@pdx.freedesktop.org


Committed by: keithp

Update of /cvs/xserver/xfree86/drivers/tdfx
In directory pdx:/tmp/cvs-serv14744/drivers/tdfx

Modified Files:
	tdfx_accel.c tdfx_dga.c tdfx_dri.c tdfx_driver.c tdfx_hwcurs.c 
	tdfx_io.c tdfx_priv.c tdfx_sli.c tdfx_video.c 
Log Message:
	* Makefile.am
	* *.c
	Ok, everyone gets #include <config.h>
	Other than that, I fixed a few extension header paths and
	whacked at the Makefile.am.  Makefile.am is a hacked version
	of xserver/Makefile.am; expect them to diverge until we can
	stick the xfree86 DDX stuff into the standard Makefile.am.


Index: tdfx_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tdfx/tdfx_accel.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- a/tdfx_accel.c	28 Oct 2001 03:33:49 -0000	1.20
+++ b/tdfx_accel.c	28 Feb 2004 01:27:50 -0000	1.21
@@ -1,6 +1,9 @@
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tdfx/tdfx_accel.c,v 1.19 2001/04/05 21:29:17 dawes Exp $ */
 
 /* All drivers should typically include these */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: tdfx_dga.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tdfx/tdfx_dga.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- a/tdfx_dga.c	21 Mar 2001 17:02:26 -0000	1.6
+++ b/tdfx_dga.c	28 Feb 2004 01:27:50 -0000	1.7
@@ -1,5 +1,8 @@
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tdfx/tdfx_dga.c,v 1.5 2001/01/13 00:06:29 mvojkovi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: tdfx_dri.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tdfx/tdfx_dri.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- a/tdfx_dri.c	28 Sep 2003 20:16:01 -0000	1.26
+++ b/tdfx_dri.c	28 Feb 2004 01:27:50 -0000	1.27
@@ -1,5 +1,8 @@
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tdfx/tdfx_dri.c,v 1.25 2003/02/08 21:26:59 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: tdfx_driver.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tdfx/tdfx_driver.c,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -d -r1.105 -r1.106
--- a/tdfx_driver.c	3 Nov 2003 05:11:41 -0000	1.105
+++ b/tdfx_driver.c	28 Feb 2004 01:27:50 -0000	1.106
@@ -1,3 +1,6 @@
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #define USE_INT10 1
 #define USE_PCIVGAIO 1
 

Index: tdfx_hwcurs.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tdfx/tdfx_hwcurs.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/tdfx_hwcurs.c	28 Oct 2001 03:33:50 -0000	1.5
+++ b/tdfx_hwcurs.c	28 Feb 2004 01:27:50 -0000	1.6
@@ -7,6 +7,9 @@
    Copyright: 1998,1999
 */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: tdfx_io.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tdfx/tdfx_io.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/tdfx_io.c	5 Apr 2001 21:29:17 -0000	1.7
+++ b/tdfx_io.c	28 Feb 2004 01:27:50 -0000	1.8
@@ -32,6 +32,9 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_ansic.h"
 #include "xf86_OSproc.h"

Index: tdfx_priv.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tdfx/tdfx_priv.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- a/tdfx_priv.c	21 May 2001 21:43:55 -0000	1.16
+++ b/tdfx_priv.c	28 Feb 2004 01:27:50 -0000	1.17
@@ -1,6 +1,9 @@
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tdfx/tdfx_priv.c,v 1.15 2001/04/05 21:29:17 dawes Exp $ */
 
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: tdfx_sli.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tdfx/tdfx_sli.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/tdfx_sli.c	21 Mar 2001 17:02:26 -0000	1.7
+++ b/tdfx_sli.c	28 Feb 2004 01:27:50 -0000	1.8
@@ -1,5 +1,8 @@
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tdfx/tdfx_sli.c,v 1.6 2000/12/15 15:19:35 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_ansic.h"
 #include "xf86_OSproc.h"

Index: tdfx_video.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tdfx/tdfx_video.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- a/tdfx_video.c	10 Nov 2003 18:22:34 -0000	1.21
+++ b/tdfx_video.c	28 Feb 2004 01:27:50 -0000	1.22
@@ -1,5 +1,8 @@
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tdfx/tdfx_video.c,v 1.20tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "tdfx.h"
 #include "dixstruct.h"