[xserver-commit] xfree86/drivers/glint IBMramdac.c,1.6,1.7 TIramdac.c,1.5,1.6 glint_dga.c,1.4,1.5 glint_dri.c,1.38,1.39 glint_driver.c,1.163,1.164 glint_shadow.c,1.1,1.2 pm2_accel.c,1.32,1.33 pm2_dac.c,1.27,1.28 pm2_video.c,1.26,1.27 pm2ramdac.c,1.12,1.13 pm2v_dac.c,1.30,1.31 pm2vramdac.c,1.6,1.7 pm3_accel.c,1.31,1.32 pm3_dac.c,1.34,1.35 pm3_video.c,1.15,1.16 pm_accel.c,1.25,1.26 pm_dac.c,1.12,1.13 sx_accel.c,1.9,1.10 tx_accel.c,1.29,1.30 tx_dac.c,1.16,1.17

Keith Packard xserver-commit@pdx.freedesktop.org


Committed by: keithp

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

Modified Files:
	IBMramdac.c TIramdac.c glint_dga.c glint_dri.c glint_driver.c 
	glint_shadow.c pm2_accel.c pm2_dac.c pm2_video.c pm2ramdac.c 
	pm2v_dac.c pm2vramdac.c pm3_accel.c pm3_dac.c pm3_video.c 
	pm_accel.c pm_dac.c sx_accel.c tx_accel.c tx_dac.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: IBMramdac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/IBMramdac.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- a/IBMramdac.c	12 Feb 1999 22:52:02 -0000	1.6
+++ b/IBMramdac.c	28 Feb 2004 01:27:39 -0000	1.7
@@ -26,6 +26,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/IBMramdac.c,v 1.5 1998/08/29 14:34:34 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: TIramdac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/TIramdac.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/TIramdac.c	30 Oct 2002 12:52:15 -0000	1.5
+++ b/TIramdac.c	28 Feb 2004 01:27:39 -0000	1.6
@@ -29,6 +29,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/TIramdac.c,v 1.4 2001/01/31 16:14:52 alanh Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: glint_dga.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/glint_dga.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- a/glint_dga.c	16 Dec 2001 21:36:50 -0000	1.4
+++ b/glint_dga.c	28 Feb 2004 01:27:39 -0000	1.5
@@ -23,6 +23,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/glint_dga.c,v 1.3 2001/04/10 20:33:30 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: glint_dri.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/glint_dri.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- a/glint_dri.c	12 Nov 2003 17:56:35 -0000	1.38
+++ b/glint_dri.c	28 Feb 2004 01:27:39 -0000	1.39
@@ -34,6 +34,9 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: glint_driver.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/glint_driver.c,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -d -r1.163 -r1.164
--- a/glint_driver.c	3 Nov 2003 22:17:21 -0000	1.163
+++ b/glint_driver.c	28 Feb 2004 01:27:39 -0000	1.164
@@ -30,6 +30,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/glint_driver.c,v 1.162 2003/11/03 05:11:11 tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "fb.h"
 #include "cfb8_32.h"
 #include "micmap.h"

Index: glint_shadow.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/glint_shadow.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/glint_shadow.c	19 Nov 1999 13:54:32 -0000	1.1
+++ b/glint_shadow.c	28 Feb 2004 01:27:39 -0000	1.2
@@ -6,6 +6,9 @@
    by Michel Dänzer <michdaen@iiic.ethz.ch>
 */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86Resources.h"

Index: pm2_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm2_accel.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- a/pm2_accel.c	8 Oct 2003 15:48:39 -0000	1.32
+++ b/pm2_accel.c	28 Feb 2004 01:27:39 -0000	1.33
@@ -32,6 +32,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm2_accel.c,v 1.30 2001/05/30 11:41:53 alanh Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "Xarch.h"
 #include "xf86.h"
 #include "xf86_OSproc.h"

Index: pm2_dac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm2_dac.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- a/pm2_dac.c	3 Nov 2003 05:11:13 -0000	1.27
+++ b/pm2_dac.c	28 Feb 2004 01:27:39 -0000	1.28
@@ -30,6 +30,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm2_dac.c,v 1.26tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "Xarch.h"
 #include "xf86.h"
 #include "xf86_OSproc.h"

Index: pm2_video.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm2_video.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- a/pm2_video.c	10 Nov 2003 18:22:20 -0000	1.26
+++ b/pm2_video.c	28 Feb 2004 01:27:39 -0000	1.27
@@ -23,6 +23,9 @@
  
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm2_video.c,v 1.25tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: pm2ramdac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm2ramdac.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- a/pm2ramdac.c	8 Oct 2003 15:48:40 -0000	1.12
+++ b/pm2ramdac.c	28 Feb 2004 01:27:39 -0000	1.13
@@ -26,6 +26,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm2ramdac.c,v 1.10 1999/07/18 03:26:57 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: pm2v_dac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm2v_dac.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- a/pm2v_dac.c	3 Nov 2003 05:11:13 -0000	1.30
+++ b/pm2v_dac.c	28 Feb 2004 01:27:39 -0000	1.31
@@ -29,6 +29,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm2v_dac.c,v 1.29tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: pm2vramdac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm2vramdac.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- a/pm2vramdac.c	31 Jan 2001 16:15:00 -0000	1.6
+++ b/pm2vramdac.c	28 Feb 2004 01:27:39 -0000	1.7
@@ -26,6 +26,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm2vramdac.c,v 1.5 2001/01/30 10:06:35 alanh Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: pm3_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm3_accel.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- a/pm3_accel.c	6 Jan 2003 00:04:54 -0000	1.31
+++ b/pm3_accel.c	28 Feb 2004 01:27:39 -0000	1.32
@@ -28,6 +28,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm3_accel.c,v 1.30 2002/05/21 14:38:04 alanh Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "Xarch.h"
 #include "xf86.h"
 #include "xf86_OSproc.h"

Index: pm3_dac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm3_dac.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- a/pm3_dac.c	3 Nov 2003 05:11:14 -0000	1.34
+++ b/pm3_dac.c	28 Feb 2004 01:27:39 -0000	1.35
@@ -28,6 +28,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm3_dac.c,v 1.33tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: pm3_video.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm3_video.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- a/pm3_video.c	10 Nov 2003 18:22:21 -0000	1.15
+++ b/pm3_video.c	28 Feb 2004 01:27:39 -0000	1.16
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm3_video.c,v 1.14tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86Resources.h"

Index: pm_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm_accel.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- a/pm_accel.c	3 Nov 2003 05:11:14 -0000	1.25
+++ b/pm_accel.c	28 Feb 2004 01:27:39 -0000	1.26
@@ -30,6 +30,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm_accel.c,v 1.24tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: pm_dac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/pm_dac.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- a/pm_dac.c	3 Nov 2003 05:11:14 -0000	1.12
+++ b/pm_dac.c	28 Feb 2004 01:27:39 -0000	1.13
@@ -29,6 +29,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/pm_dac.c,v 1.11tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: sx_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/sx_accel.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- a/sx_accel.c	8 Oct 2003 15:48:40 -0000	1.9
+++ b/sx_accel.c	28 Feb 2004 01:27:39 -0000	1.10
@@ -30,6 +30,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/sx_accel.c,v 1.7 2001/05/29 11:23:38 alanh Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: tx_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/tx_accel.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- a/tx_accel.c	8 Oct 2003 15:48:40 -0000	1.29
+++ b/tx_accel.c	28 Feb 2004 01:27:39 -0000	1.30
@@ -30,6 +30,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/tx_accel.c,v 1.27 2001/05/29 11:23:38 alanh Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: tx_dac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/glint/tx_dac.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- a/tx_dac.c	3 Nov 2003 05:11:14 -0000	1.16
+++ b/tx_dac.c	28 Feb 2004 01:27:39 -0000	1.17
@@ -29,6 +29,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/glint/tx_dac.c,v 1.15tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"