[xserver-commit] xfree86/drivers/tga BT463ramdac.c,1.1,1.2 BTramdac.c,1.5,1.6 IBM561ramdac.c,1.4,1.5 ICS1562.c,1.3,1.4 tga_accel.c,1.16,1.17 tga_cursor.c,1.2,1.3 tga_dac.c,1.14,1.15 tga_driver.c,1.61,1.62 tga_line.c,1.2,1.3

Keith Packard xserver-commit@pdx.freedesktop.org


Committed by: keithp

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

Modified Files:
	BT463ramdac.c BTramdac.c IBM561ramdac.c ICS1562.c tga_accel.c 
	tga_cursor.c tga_dac.c tga_driver.c tga_line.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: BT463ramdac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tga/BT463ramdac.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/BT463ramdac.c	29 Aug 1998 05:43:34 -0000	1.1
+++ b/BT463ramdac.c	28 Feb 2004 01:27:50 -0000	1.2
@@ -1,5 +1,8 @@
 /* $XFree86$ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: BTramdac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tga/BTramdac.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/BTramdac.c	20 Oct 2000 12:57:26 -0000	1.5
+++ b/BTramdac.c	28 Feb 2004 01:27:50 -0000	1.6
@@ -26,6 +26,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tga/BTramdac.c,v 1.4 1999/02/07 11:11:14 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: IBM561ramdac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tga/IBM561ramdac.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- a/IBM561ramdac.c	24 Sep 2003 02:43:28 -0000	1.4
+++ b/IBM561ramdac.c	28 Feb 2004 01:27:50 -0000	1.5
@@ -1,5 +1,8 @@
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tga/IBM561ramdac.c,v 1.3 2001/02/15 11:03:58 alanh Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: ICS1562.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tga/ICS1562.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- a/ICS1562.c	17 Apr 1999 07:06:56 -0000	1.3
+++ b/ICS1562.c	28 Feb 2004 01:27:50 -0000	1.4
@@ -1,5 +1,8 @@
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tga/ICS1562.c,v 1.2 1998/07/25 16:55:56 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #define BASE_FREQ 14.31818
 #define MAX_FREQ 230000
 

Index: tga_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tga/tga_accel.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- a/tga_accel.c	24 Sep 2003 02:43:28 -0000	1.16
+++ b/tga_accel.c	28 Feb 2004 01:27:50 -0000	1.17
@@ -26,6 +26,9 @@
  * DEC TGA accelerated options.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "fb.h"
 #include "micmap.h"
 #include "xf86.h"

Index: tga_cursor.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tga/tga_cursor.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/tga_cursor.c	20 Oct 2000 12:57:26 -0000	1.2
+++ b/tga_cursor.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -30,6 +30,9 @@
 
 /* tga_cursor.c */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86PciInfo.h"
 #include "xf86Pci.h"

Index: tga_dac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tga/tga_dac.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- a/tga_dac.c	28 Oct 2001 03:33:50 -0000	1.14
+++ b/tga_dac.c	28 Feb 2004 01:27:50 -0000	1.15
@@ -23,6 +23,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tga/tga_dac.c,v 1.13 2001/02/17 14:18:30 tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: tga_driver.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tga/tga_driver.c,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- a/tga_driver.c	3 Nov 2003 05:11:41 -0000	1.61
+++ b/tga_driver.c	28 Feb 2004 01:27:50 -0000	1.62
@@ -25,6 +25,9 @@
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tga/tga_driver.c,v 1.60tsi Exp $ */
 
 /* everybody includes these */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: tga_line.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/tga/tga_line.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/tga_line.c	16 Dec 1999 02:26:30 -0000	1.2
+++ b/tga_line.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -31,6 +31,9 @@
 /* accelerated solid and dashed lines */
 /* adapted from xaa/xaaLine.c */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "X.h"
 #include "misc.h"
 #include "xf86.h"