[xserver-commit] xfree86/drivers/cyrix ChangeLog,1.1,1.2 cyrix_accel.c,1.5,1.6 cyrix_bank.c,1.3,1.4 cyrix_driver.c,1.31,1.32 cyrix_helper.c,1.5,1.6 cyrix_shadow.c,1.1,1.2
Keith Packard
xserver-commit@pdx.freedesktop.org
- Previous message: [xserver-commit] xfree86/drivers/cirrus CirrusClk.c,1.9,1.10 alp_driver.c,1.36,1.37 alp_hwcurs.c,1.5,1.6 alp_i2c.c,1.3,1.4 alp_xaa.c,1.8,1.9 alp_xaam.c,1.8,1.9 cir_dga.c,1.7,1.8 cir_driver.c,1.69,1.70 cir_shadow.c,1.1,1.2 lg_driver.c,1.50,1.51 lg_hwcurs.c,1.5,1.6 lg_i2c.c,1.4,1.5 lg_xaa.c,1.5,1.6
- Next message: [xserver-commit] xfree86/drivers/dummy dummy_cursor.c,1.1,1.2 dummy_dga.c,1.1,1.2 dummy_driver.c,1.6,1.7
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: keithp
Update of /cvs/xserver/xfree86/drivers/cyrix
In directory pdx:/tmp/cvs-serv14744/drivers/cyrix
Modified Files:
ChangeLog cyrix_accel.c cyrix_bank.c cyrix_driver.c
cyrix_helper.c cyrix_shadow.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: ChangeLog
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/cyrix/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/ChangeLog 6 Nov 2002 11:38:59 -0000 1.1
+++ b/ChangeLog 28 Feb 2004 01:27:38 -0000 1.2
@@ -1,3 +1,13 @@
+2004-02-27 Keith Packard <keithp@keithp.com>
+
+ reviewed by: <delete if not using a buddy>
+
+ * cyrix_accel.c:
+ * cyrix_bank.c:
+ * cyrix_driver.c:
+ * cyrix_helper.c:
+ * cyrix_shadow.c:
+
Release 0.2
-----------
Index: cyrix_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/cyrix/cyrix_accel.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/cyrix_accel.c 6 Nov 2002 11:38:59 -0000 1.5
+++ b/cyrix_accel.c 28 Feb 2004 01:27:38 -0000 1.6
@@ -28,6 +28,9 @@
*/
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/cyrix/cyrix_accel.c,v 1.3 2000/04/19 16:57:43 eich Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "vgaHW.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: cyrix_bank.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/cyrix/cyrix_bank.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- a/cyrix_bank.c 6 Nov 2002 11:38:59 -0000 1.3
+++ b/cyrix_bank.c 28 Feb 2004 01:27:38 -0000 1.4
@@ -28,6 +28,9 @@
*/
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/cyrix/cyrix_bank.c,v 1.1 2000/02/13 00:56:10 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define PSZ 8
/* All drivers should typically include these */
Index: cyrix_driver.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/cyrix/cyrix_driver.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- a/cyrix_driver.c 6 Nov 2003 18:38:02 -0000 1.31
+++ b/cyrix_driver.c 28 Feb 2004 01:27:38 -0000 1.32
@@ -52,6 +52,9 @@
*/
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/cyrix/cyrix_driver.c,v 1.30tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "fb.h"
#include "mibank.h"
#include "micmap.h"
Index: cyrix_helper.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/cyrix/cyrix_helper.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/cyrix_helper.c 24 Sep 2003 02:43:21 -0000 1.5
+++ b/cyrix_helper.c 28 Feb 2004 01:27:38 -0000 1.6
@@ -41,6 +41,9 @@
*/
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/cyrix/cyrix_helper.c,v 1.4 2002/11/06 11:38:59 alanh Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "cyrix.h"
#include "vgaHW.h"
#include "xf86_ansic.h"
Index: cyrix_shadow.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/cyrix/cyrix_shadow.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/cyrix_shadow.c 6 Nov 2002 11:38:59 -0000 1.1
+++ b/cyrix_shadow.c 28 Feb 2004 01:27:38 -0000 1.2
@@ -5,6 +5,9 @@
Written by Mark Vojkovich <markv@valinux.com>
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86Resources.h"
- Previous message: [xserver-commit] xfree86/drivers/cirrus CirrusClk.c,1.9,1.10 alp_driver.c,1.36,1.37 alp_hwcurs.c,1.5,1.6 alp_i2c.c,1.3,1.4 alp_xaa.c,1.8,1.9 alp_xaam.c,1.8,1.9 cir_dga.c,1.7,1.8 cir_driver.c,1.69,1.70 cir_shadow.c,1.1,1.2 lg_driver.c,1.50,1.51 lg_hwcurs.c,1.5,1.6 lg_i2c.c,1.4,1.5 lg_xaa.c,1.5,1.6
- Next message: [xserver-commit] xfree86/drivers/dummy dummy_cursor.c,1.1,1.2 dummy_dga.c,1.1,1.2 dummy_driver.c,1.6,1.7
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]