[xserver-commit] xfree86/drivers/rendition accelX.c,1.12,1.13 hwcursor.c,1.8,1.9 rendition.c,1.59,1.60 rendition_shadow.c,1.1,1.2 v1krisc.c,1.7,1.8 vboard.c,1.19,1.20 vloaduc.c,1.14,1.15 vmisc.c,1.4,1.5 vmodes.c,1.13,1.14 vramdac.c,1.19,1.20
Keith Packard
xserver-commit@pdx.freedesktop.org
- Previous message: [xserver-commit] xfree86/drivers/neomagic neo_2070.c,1.5,1.6 neo_2090.c,1.7,1.8 neo_2097.c,1.12,1.13 neo_2200.c,1.20,1.21 neo_bank.c,1.4,1.5 neo_cursor.c,1.9,1.10 neo_dga.c,1.5,1.6 neo_driver.c,1.74,1.75 neo_i2c.c,1.5,1.6 neo_shadow.c,1.3,1.4 neo_video.c,1.7,1.8
- Next message: [xserver-commit] xfree86/drivers/nsc/gfx disp_gu1.c,1.5,1.6 disp_gu2.c,1.5,1.6 durango.c,1.1,1.2 gfx_dcdr.c,1.1,1.2 gfx_disp.c,1.2,1.3 gfx_i2c.c,1.1,1.2 gfx_init.c,1.1,1.2 gfx_msr.c,1.1,1.2 gfx_rndr.c,1.1,1.2 gfx_tv.c,1.1,1.2 gfx_vga.c,1.1,1.2 gfx_vid.c,1.1,1.2 gfx_vip.c,1.1,1.2 i2c_acc.c,1.2,1.3 i2c_gpio.c,1.1,1.2 init_gu1.c,1.1,1.2 init_gu2.c,1.1,1.2 msr_rdcl.c,1.1,1.2 rndr_gu1.c,1.2,1.3 rndr_gu2.c,1.1,1.2 saa7114.c,1.1,1.2 tv_1200.c,1.1,1.2 tv_fs450.c,1.1,1.2 tv_fs451.c,1.2,1.3 tv_geode.c,1.1,1.2 vga_gu1.c,1.1,1.2 vid_1200.c,1.2,1.3 vid_1400.c,1.1,1.2 vid_5530.c,1.2,1.3 vid_rdcl.c,1.4,1.5 vip_1200.c,1.1,1.2 vip_1400.c,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: keithp
Update of /cvs/xserver/xfree86/drivers/rendition
In directory pdx:/tmp/cvs-serv14744/drivers/rendition
Modified Files:
accelX.c hwcursor.c rendition.c rendition_shadow.c v1krisc.c
vboard.c vloaduc.c vmisc.c vmodes.c vramdac.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: accelX.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/accelX.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- a/accelX.c 4 Apr 2002 14:05:45 -0000 1.12
+++ b/accelX.c 28 Feb 2004 01:27:40 -0000 1.13
@@ -12,6 +12,9 @@
* includes
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "rendition.h"
#include "accel.h"
#include "vboard.h"
Index: hwcursor.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/hwcursor.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- a/hwcursor.c 4 Apr 2002 14:05:45 -0000 1.8
+++ b/hwcursor.c 28 Feb 2004 01:27:40 -0000 1.9
@@ -3,6 +3,9 @@
* includes
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "rendition.h"
#include "vtypes.h"
#include "vramdac.h"
Index: rendition.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/rendition.c,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- a/rendition.c 11 Jan 2004 04:03:16 -0000 1.59
+++ b/rendition.c 28 Feb 2004 01:27:40 -0000 1.60
@@ -40,6 +40,9 @@
* WARNING BUGGY !!!
* Yes, you activate it on your own risk.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define USE_ACCEL 0
/*
Index: rendition_shadow.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/rendition_shadow.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/rendition_shadow.c 1 Mar 2000 00:25:25 -0000 1.1
+++ b/rendition_shadow.c 28 Feb 2004 01:27:40 -0000 1.2
@@ -6,6 +6,9 @@
*/
/* $XFree86$ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "rendition.h"
#include "vtypes.h"
#include "rendition_shadow.h"
Index: v1krisc.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/v1krisc.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/v1krisc.c 25 Jan 2002 21:56:07 -0000 1.7
+++ b/v1krisc.c 28 Feb 2004 01:27:41 -0000 1.8
@@ -7,6 +7,9 @@
* includes
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "rendition.h"
#include "v1krisc.h"
#include "vos.h"
Index: vboard.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/vboard.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- a/vboard.c 6 Nov 2003 18:38:04 -0000 1.19
+++ b/vboard.c 28 Feb 2004 01:27:41 -0000 1.20
@@ -3,6 +3,9 @@
* includes
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "rendition.h"
#include "v1krisc.h"
#include "vboard.h"
Index: vloaduc.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/vloaduc.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- a/vloaduc.c 6 Nov 2003 18:38:04 -0000 1.14
+++ b/vloaduc.c 28 Feb 2004 01:27:41 -0000 1.15
@@ -3,6 +3,9 @@
* includes
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "rendition.h"
#include "v1kregs.h"
#include "v1krisc.h"
Index: vmisc.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/vmisc.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- a/vmisc.c 31 Mar 2000 20:13:27 -0000 1.4
+++ b/vmisc.c 28 Feb 2004 01:27:41 -0000 1.5
@@ -1,6 +1,9 @@
/* Misc routines used elsewhere in driver */
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/rendition/vmisc.c,v 1.3 2000/02/25 21:03:05 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "rendition.h"
#include "vtypes.h"
#include "vos.h"
Index: vmodes.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/vmodes.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- a/vmodes.c 11 Dec 2002 17:23:33 -0000 1.13
+++ b/vmodes.c 28 Feb 2004 01:27:41 -0000 1.14
@@ -9,6 +9,9 @@
* includes
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "rendition.h"
#include "vmodes.h"
#include "vos.h"
Index: vramdac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/rendition/vramdac.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- a/vramdac.c 24 Sep 2003 02:43:25 -0000 1.19
+++ b/vramdac.c 28 Feb 2004 01:27:41 -0000 1.20
@@ -3,6 +3,9 @@
* includes
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "rendition.h"
#include "vramdac.h"
#include "vos.h"
- Previous message: [xserver-commit] xfree86/drivers/neomagic neo_2070.c,1.5,1.6 neo_2090.c,1.7,1.8 neo_2097.c,1.12,1.13 neo_2200.c,1.20,1.21 neo_bank.c,1.4,1.5 neo_cursor.c,1.9,1.10 neo_dga.c,1.5,1.6 neo_driver.c,1.74,1.75 neo_i2c.c,1.5,1.6 neo_shadow.c,1.3,1.4 neo_video.c,1.7,1.8
- Next message: [xserver-commit] xfree86/drivers/nsc/gfx disp_gu1.c,1.5,1.6 disp_gu2.c,1.5,1.6 durango.c,1.1,1.2 gfx_dcdr.c,1.1,1.2 gfx_disp.c,1.2,1.3 gfx_i2c.c,1.1,1.2 gfx_init.c,1.1,1.2 gfx_msr.c,1.1,1.2 gfx_rndr.c,1.1,1.2 gfx_tv.c,1.1,1.2 gfx_vga.c,1.1,1.2 gfx_vid.c,1.1,1.2 gfx_vip.c,1.1,1.2 i2c_acc.c,1.2,1.3 i2c_gpio.c,1.1,1.2 init_gu1.c,1.1,1.2 init_gu2.c,1.1,1.2 msr_rdcl.c,1.1,1.2 rndr_gu1.c,1.2,1.3 rndr_gu2.c,1.1,1.2 saa7114.c,1.1,1.2 tv_1200.c,1.1,1.2 tv_fs450.c,1.1,1.2 tv_fs451.c,1.2,1.3 tv_geode.c,1.1,1.2 vga_gu1.c,1.1,1.2 vid_1200.c,1.2,1.3 vid_1400.c,1.1,1.2 vid_5530.c,1.2,1.3 vid_rdcl.c,1.4,1.5 vip_1200.c,1.1,1.2 vip_1400.c,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]