[xserver-commit] xfree86/drivers/sunffb ffb_accel.c,1.7,1.8 ffb_attr.c,1.2,1.3 ffb_bcopy.c,1.2,1.3 ffb_checks.c,1.2,1.3 ffb_circle.c,1.2,1.3 ffb_clip.c,1.1,1.2 ffb_cplane.c,1.3,1.4 ffb_cursor.c,1.2,1.3 ffb_dac.c,1.4,1.5 ffb_dbe.c,1.2,1.3 ffb_ddc.c,1.1,1.2 ffb_dga.c,1.2,1.3 ffb_dri.c,1.9,1.10 ffb_driver.c,1.12,1.13 ffb_frect.c,1.3,1.4 ffb_fspans.c,1.2,1.3 ffb_gc.c,1.4,1.5 ffb_glyph.c,1.2,1.3 ffb_gspans.c,1.2,1.3 ffb_line.c,1.2,1.3 ffb_plygon.c,1.2,1.3 ffb_point.c,1.2,1.3 ffb_rect.c,1.2,1.3 ffb_seg.c,1.2,1.3 ffb_sspans.c,1.2,1.3 ffb_stip.c,1.2,1.3 ffb_stubs.c,1.2,1.3 ffb_wid.c,1.3,1.4 ffb_wline.c,1.3,1.4 ffb_zeroarc.c,1.2,1.3

Keith Packard xserver-commit@pdx.freedesktop.org


Committed by: keithp

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

Modified Files:
	ffb_accel.c ffb_attr.c ffb_bcopy.c ffb_checks.c ffb_circle.c 
	ffb_clip.c ffb_cplane.c ffb_cursor.c ffb_dac.c ffb_dbe.c 
	ffb_ddc.c ffb_dga.c ffb_dri.c ffb_driver.c ffb_frect.c 
	ffb_fspans.c ffb_gc.c ffb_glyph.c ffb_gspans.c ffb_line.c 
	ffb_plygon.c ffb_point.c ffb_rect.c ffb_seg.c ffb_sspans.c 
	ffb_stip.c ffb_stubs.c ffb_wid.c ffb_wline.c ffb_zeroarc.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: ffb_accel.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_accel.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/ffb_accel.c	10 Nov 2003 18:22:31 -0000	1.7
+++ b/ffb_accel.c	28 Feb 2004 01:27:50 -0000	1.8
@@ -26,6 +26,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_accel.c,v 1.6tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include	"scrnintstr.h"
 #include	"pixmapstr.h"
 #include	"regionstr.h"

Index: ffb_attr.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_attr.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_attr.c	23 May 2000 04:47:44 -0000	1.2
+++ b/ffb_attr.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_attr.c,v 1.1 2000/05/18 23:21:35 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_fifo.h"
 #include "ffb_rcache.h"

Index: ffb_bcopy.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_bcopy.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_bcopy.c	23 May 2000 04:47:44 -0000	1.2
+++ b/ffb_bcopy.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_bcopy.c,v 1.1 2000/05/18 23:21:35 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_checks.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_checks.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_checks.c	23 May 2000 04:47:44 -0000	1.2
+++ b/ffb_checks.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -25,6 +25,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_checks.c,v 1.1 2000/05/18 23:21:35 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_circle.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_circle.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_circle.c	23 May 2000 04:47:44 -0000	1.2
+++ b/ffb_circle.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_circle.c,v 1.1 2000/05/18 23:21:36 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_clip.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_clip.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/ffb_clip.c	18 May 2000 23:21:36 -0000	1.1
+++ b/ffb_clip.c	28 Feb 2004 01:27:50 -0000	1.2
@@ -24,6 +24,9 @@
  */
 /* $XFree86$ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_cplane.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_cplane.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- a/ffb_cplane.c	19 Jul 2003 13:22:29 -0000	1.3
+++ b/ffb_cplane.c	28 Feb 2004 01:27:50 -0000	1.4
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_cplane.c,v 1.2tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_cursor.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_cursor.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_cursor.c	23 May 2000 04:47:44 -0000	1.2
+++ b/ffb_cursor.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -25,6 +25,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_cursor.c,v 1.1 2000/05/18 23:21:36 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 
 /* This file just performs cursor software state management.  The

Index: ffb_dac.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_dac.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- a/ffb_dac.c	6 Dec 2002 02:44:03 -0000	1.4
+++ b/ffb_dac.c	28 Feb 2004 01:27:50 -0000	1.5
@@ -23,6 +23,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_dac.c,v 1.3tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_rcache.h"
 #include "ffb_fifo.h"

Index: ffb_dbe.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_dbe.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_dbe.c	11 Feb 2003 03:19:02 -0000	1.2
+++ b/ffb_dbe.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -23,6 +23,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_dbe.c,v 1.1 2000/05/23 04:47:44 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #define NEED_REPLIES
 #define NEED_EVENTS
 #include "X.h"

Index: ffb_ddc.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_ddc.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/ffb_ddc.c	23 May 2000 04:47:44 -0000	1.1
+++ b/ffb_ddc.c	28 Feb 2004 01:27:50 -0000	1.2
@@ -23,6 +23,9 @@
  */
 /* $XFree86$ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 
 #include "ffb_dac.h"

Index: ffb_dga.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_dga.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_dga.c	17 Oct 2000 16:53:17 -0000	1.2
+++ b/ffb_dga.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -23,6 +23,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_dga.c,v 1.1 2000/05/23 04:47:44 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: ffb_dri.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_dri.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- a/ffb_dri.c	2 May 2001 15:06:10 -0000	1.9
+++ b/ffb_dri.c	28 Feb 2004 01:27:50 -0000	1.10
@@ -22,6 +22,9 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: ffb_driver.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_driver.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- a/ffb_driver.c	30 Oct 2003 17:37:12 -0000	1.12
+++ b/ffb_driver.c	28 Feb 2004 01:27:50 -0000	1.13
@@ -22,6 +22,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_driver.c,v 1.11 2002/12/06 02:44:04 tsi Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "xf86.h"
 #include "xf86_OSproc.h"
 #include "xf86_ansic.h"

Index: ffb_frect.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_frect.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- a/ffb_frect.c	5 Apr 2001 17:42:33 -0000	1.3
+++ b/ffb_frect.c	28 Feb 2004 01:27:50 -0000	1.4
@@ -26,6 +26,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_frect.c,v 1.2 2000/05/23 04:47:44 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_fspans.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_fspans.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_fspans.c	23 May 2000 04:47:44 -0000	1.2
+++ b/ffb_fspans.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_fspans.c,v 1.1 2000/05/18 23:21:36 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_gc.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_gc.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- a/ffb_gc.c	23 Jun 2003 17:35:48 -0000	1.4
+++ b/ffb_gc.c	28 Feb 2004 01:27:50 -0000	1.5
@@ -26,6 +26,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_gc.c,v 1.2 2000/05/23 04:47:44 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_glyph.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_glyph.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_glyph.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_glyph.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -26,6 +26,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_glyph.c,v 1.1 2000/05/18 23:21:37 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_gspans.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_gspans.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_gspans.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_gspans.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_gspans.c,v 1.1 2000/05/18 23:21:37 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_line.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_line.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_line.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_line.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_line.c,v 1.1 2000/05/18 23:21:37 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_plygon.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_plygon.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_plygon.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_plygon.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -25,6 +25,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_plygon.c,v 1.1 2000/05/18 23:21:37 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_point.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_point.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_point.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_point.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -25,6 +25,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_point.c,v 1.1 2000/05/18 23:21:37 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_rect.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_rect.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_rect.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_rect.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -23,6 +23,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_rect.c,v 1.1 2000/05/18 23:21:37 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #define PSZ 32
 
 #include "ffb.h"

Index: ffb_seg.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_seg.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_seg.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_seg.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -25,6 +25,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_seg.c,v 1.1 2000/05/18 23:21:37 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_sspans.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_sspans.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_sspans.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_sspans.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_sspans.c,v 1.1 2000/05/18 23:21:37 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_stip.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_stip.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_stip.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_stip.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -25,6 +25,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_stip.c,v 1.1 2000/05/18 23:21:38 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_stubs.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_stubs.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_stubs.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_stubs.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -24,6 +24,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_stubs.c,v 1.1 2000/05/18 23:21:38 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"

Index: ffb_wid.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_wid.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- a/ffb_wid.c	1 Dec 2000 00:24:34 -0000	1.3
+++ b/ffb_wid.c	28 Feb 2004 01:27:50 -0000	1.4
@@ -23,6 +23,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_wid.c,v 1.2 2000/06/20 05:08:48 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 
 static void

Index: ffb_wline.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_wline.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- a/ffb_wline.c	3 Mar 2001 22:41:34 -0000	1.3
+++ b/ffb_wline.c	28 Feb 2004 01:27:50 -0000	1.4
@@ -25,6 +25,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_wline.c,v 1.2 2000/05/23 04:47:45 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #define PSZ 32
 
 #include "ffb.h"

Index: ffb_zeroarc.c
===================================================================
RCS file: /cvs/xserver/xfree86/drivers/sunffb/ffb_zeroarc.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/ffb_zeroarc.c	23 May 2000 04:47:45 -0000	1.2
+++ b/ffb_zeroarc.c	28 Feb 2004 01:27:50 -0000	1.3
@@ -26,6 +26,9 @@
  */
 /* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/sunffb/ffb_zeroarc.c,v 1.1 2000/05/18 23:21:38 dawes Exp $ */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "ffb.h"
 #include "ffb_regs.h"
 #include "ffb_rcache.h"