[xserver-commit] xfree86/drivers/chips ct_accel.c,1.41,1.42 ct_bank.c,1.7,1.8 ct_cursor.c,1.28,1.29 ct_ddc.c,1.9,1.10 ct_dga.c,1.5,1.6 ct_driver.c,1.133,1.134 ct_regs.c,1.9,1.10 ct_shadow.c,1.1,1.2 ct_video.c,1.17,1.18
Keith Packard
xserver-commit@pdx.freedesktop.org
Committed by: keithp
Update of /cvs/xserver/xfree86/drivers/chips
In directory pdx:/tmp/cvs-serv14744/drivers/chips
Modified Files:
ct_accel.c ct_bank.c ct_cursor.c ct_ddc.c ct_dga.c ct_driver.c
ct_regs.c ct_shadow.c ct_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: ct_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/chips/ct_accel.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- a/ct_accel.c 3 Nov 2003 05:11:07 -0000 1.41
+++ b/ct_accel.c 28 Feb 2004 01:27:38 -0000 1.42
@@ -33,6 +33,9 @@
* To enable the use of this undocumented feature, uncomment the define
* below.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define UNDOCUMENTED_FEATURE
/* All drivers should typically include these */
Index: ct_bank.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/chips/ct_bank.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/ct_bank.c 31 Dec 2003 06:14:36 -0000 1.7
+++ b/ct_bank.c 28 Feb 2004 01:27:38 -0000 1.8
@@ -28,6 +28,9 @@
* negligence, tort, under statute, in equity, at law or otherwise, even if
* advised of the possibility of such damage.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define PSZ 8
/*
Index: ct_cursor.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/chips/ct_cursor.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- a/ct_cursor.c 17 Jul 2003 08:19:34 -0000 1.28
+++ b/ct_cursor.c 28 Feb 2004 01:27:38 -0000 1.29
@@ -27,6 +27,9 @@
*/
/* 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: ct_ddc.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/chips/ct_ddc.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- a/ct_ddc.c 24 Sep 2003 02:43:20 -0000 1.9
+++ b/ct_ddc.c 28 Feb 2004 01:27:38 -0000 1.10
@@ -1,6 +1,9 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/chips/ct_ddc.c,v 1.8 2001/05/09 19:57:04 dbateman 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: ct_dga.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/chips/ct_dga.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/ct_dga.c 25 Nov 2002 14:04:58 -0000 1.5
+++ b/ct_dga.c 28 Feb 2004 01:27:38 -0000 1.6
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/chips/ct_dga.c,v 1.3tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
Index: ct_driver.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/chips/ct_driver.c,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -d -r1.133 -r1.134
--- a/ct_driver.c 3 Nov 2003 05:11:07 -0000 1.133
+++ b/ct_driver.c 28 Feb 2004 01:27:38 -0000 1.134
@@ -71,6 +71,9 @@
*/
/* 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: ct_regs.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/chips/ct_regs.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- a/ct_regs.c 3 Nov 2003 05:11:09 -0000 1.9
+++ b/ct_regs.c 28 Feb 2004 01:27:38 -0000 1.10
@@ -49,6 +49,9 @@
/* 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: ct_shadow.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/chips/ct_shadow.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/ct_shadow.c 8 Feb 2000 13:13:13 -0000 1.1
+++ b/ct_shadow.c 28 Feb 2004 01:27:38 -0000 1.2
@@ -1,5 +1,8 @@
/* $XFree86: Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86Resources.h"
Index: ct_video.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/chips/ct_video.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- a/ct_video.c 10 Nov 2003 18:22:19 -0000 1.17
+++ b/ct_video.c 28 Feb 2004 01:27:38 -0000 1.18
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/chips/ct_video.c,v 1.16tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86Resources.h"