[xserver-commit] xfree86/xaa Makefile.am,3.1,3.2 xaaBitBlt.c,1.5,1.6 xaaBitOrder.c,1.9,1.10 xaaBitmap.c,1.11,1.12 xaaCpyArea.c,1.14,1.15 xaaCpyPlane.c,1.15,1.16 xaaCpyWin.c,1.5,1.6 xaaDashLine.c,1.6,1.7 xaaFallback.c,1.6,1.7 xaaFillArc.c,1.5,1.6 xaaFillPoly.c,1.17,1.18 xaaFillRect.c,1.17,1.18 xaaGC.c,1.20,1.21 xaaGCmisc.c,1.16,1.17 xaaImage.c,1.22,1.23 xaaInit.c,1.36,1.37 xaaInitAccel.c,1.37,1.38 xaaLine.c,1.7,1.8 xaaLineMisc.c,1.6,1.7 xaaNonTEGlyph.c,1.7,1.8 xaaNonTEText.c,1.15,1.16 xaaOffscreen.c,1.7,1.8 xaaOverlay.c,1.16,1.17 xaaOverlayDF.c,1.3,1.4 xaaPCache.c,1.34,1.35 xaaPaintWin.c,1.12,1.13 xaaPict.c,1.20,1.21 xaaROP.c,1.3,1.4 xaaRect.c,1.4,1.5 xaaSpans.c,1.16,1.17 xaaStateChange.c,3.4,3.5 xaaStipple.c,1.13,1.14 xaaTEGlyph.c,1.10,1.11 xaaTEText.c,1.8,1.9 xaaWideLine.c,1.12,1.13
Keith Packard
xserver-commit@pdx.freedesktop.org
- Previous message: [xserver-commit] xfree86/vbe vbe.c,1.4,1.5 vbeModes.c,1.5,1.6 vbe_module.c,1.2,1.3
- Next message: [xserver-commit] xfree86/vgahw vgaCmap.c,1.8,1.9 vgaHW.c,1.59,1.60 vgaHWmodule.c,1.7,1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: keithp
Update of /cvs/xserver/xfree86/xaa
In directory pdx:/tmp/cvs-serv14744/xaa
Modified Files:
Makefile.am xaaBitBlt.c xaaBitOrder.c xaaBitmap.c xaaCpyArea.c
xaaCpyPlane.c xaaCpyWin.c xaaDashLine.c xaaFallback.c
xaaFillArc.c xaaFillPoly.c xaaFillRect.c xaaGC.c xaaGCmisc.c
xaaImage.c xaaInit.c xaaInitAccel.c xaaLine.c xaaLineMisc.c
xaaNonTEGlyph.c xaaNonTEText.c xaaOffscreen.c xaaOverlay.c
xaaOverlayDF.c xaaPCache.c xaaPaintWin.c xaaPict.c xaaROP.c
xaaRect.c xaaSpans.c xaaStateChange.c xaaStipple.c
xaaTEGlyph.c xaaTEText.c xaaWideLine.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: Makefile.am
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/Makefile.am,v
retrieving revision 3.1
retrieving revision 3.2
diff -u -d -r3.1 -r3.2
--- a/Makefile.am 19 Feb 2004 03:50:06 -0000 3.1
+++ b/Makefile.am 28 Feb 2004 01:28:02 -0000 3.2
@@ -1,5 +1,5 @@
INCLUDES = $(XF86_INCS)
-AM_CFLAGS = $(XF86_CFLAGS) -DPOLYSEGMENT
+AM_CFLAGS = $(XF86_CFLAGS)
SUBDIRS = lsb_first msb_first lsb_fixed msb_fixed
Index: xaaBitBlt.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaBitBlt.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/xaaBitBlt.c 19 Feb 2004 03:51:45 -0000 1.5
+++ b/xaaBitBlt.c 28 Feb 2004 01:28:02 -0000 1.6
@@ -7,6 +7,9 @@
to the fg and bg so CopyPlane can use this.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaBitOrder.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaBitOrder.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- a/xaaBitOrder.c 19 Feb 2004 03:51:45 -0000 1.9
+++ b/xaaBitOrder.c 28 Feb 2004 01:28:02 -0000 1.10
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaBitOrder.c,v 1.8 2003/02/17 16:08:29 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/Xmd.h>
CARD32 XAAReverseBitOrder(CARD32 v);
Index: xaaBitmap.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaBitmap.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- a/xaaBitmap.c 19 Feb 2004 03:51:46 -0000 1.11
+++ b/xaaBitmap.c 28 Feb 2004 01:28:02 -0000 1.12
@@ -1,6 +1,9 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaBitmap.c,v 1.10 2000/09/01 05:49:45 mvojkovi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xaa.h"
#include "xaalocal.h"
#include "xaacexp.h"
Index: xaaCpyArea.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaCpyArea.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- a/xaaCpyArea.c 19 Feb 2004 03:51:46 -0000 1.14
+++ b/xaaCpyArea.c 28 Feb 2004 01:28:02 -0000 1.15
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaCpyArea.c,v 1.13 2001/02/19 22:19:49 mvojkovi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaCpyPlane.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaCpyPlane.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- a/xaaCpyPlane.c 19 Feb 2004 03:51:46 -0000 1.15
+++ b/xaaCpyPlane.c 28 Feb 2004 01:28:02 -0000 1.16
@@ -10,6 +10,9 @@
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaCpyWin.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaCpyWin.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/xaaCpyWin.c 19 Feb 2004 03:51:46 -0000 1.5
+++ b/xaaCpyWin.c 28 Feb 2004 01:28:02 -0000 1.6
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaCpyWin.c,v 1.4 2003/11/10 18:22:40 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaDashLine.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaDashLine.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- a/xaaDashLine.c 19 Feb 2004 03:51:46 -0000 1.6
+++ b/xaaDashLine.c 28 Feb 2004 01:28:02 -0000 1.7
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaDashLine.c,v 1.5 2002/09/18 18:14:59 martin Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/X.h>
#include "misc.h"
#include "xf86.h"
Index: xaaFallback.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaFallback.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- a/xaaFallback.c 19 Feb 2004 03:51:46 -0000 1.6
+++ b/xaaFallback.c 28 Feb 2004 01:28:02 -0000 1.7
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaFallback.c,v 1.5 1999/05/30 03:03:31 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaFillArc.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaFillArc.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/xaaFillArc.c 19 Feb 2004 03:51:46 -0000 1.5
+++ b/xaaFillArc.c 28 Feb 2004 01:28:02 -0000 1.6
@@ -34,6 +34,9 @@
*
* Clipped arcs are dispatched to FillSpans.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaFillPoly.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaFillPoly.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- a/xaaFillPoly.c 19 Feb 2004 03:51:46 -0000 1.17
+++ b/xaaFillPoly.c 28 Feb 2004 01:28:02 -0000 1.18
@@ -31,6 +31,9 @@
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaFillRect.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaFillRect.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- a/xaaFillRect.c 19 Feb 2004 03:51:46 -0000 1.17
+++ b/xaaFillRect.c 28 Feb 2004 01:28:02 -0000 1.18
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaFillRect.c,v 1.16 2003/11/10 18:22:40 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaGC.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaGC.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- a/xaaGC.c 19 Feb 2004 03:51:46 -0000 1.20
+++ b/xaaGC.c 28 Feb 2004 01:28:02 -0000 1.21
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaGC.c,v 1.19 2001/02/19 22:19:50 mvojkovi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaGCmisc.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaGCmisc.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- a/xaaGCmisc.c 19 Feb 2004 03:51:46 -0000 1.16
+++ b/xaaGCmisc.c 28 Feb 2004 01:28:03 -0000 1.17
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaGCmisc.c,v 1.15 2000/09/25 23:56:14 mvojkovi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaImage.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaImage.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- a/xaaImage.c 19 Feb 2004 03:51:46 -0000 1.22
+++ b/xaaImage.c 28 Feb 2004 01:28:03 -0000 1.23
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaImage.c,v 1.21 2003/11/10 18:22:41 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaInit.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaInit.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- a/xaaInit.c 19 Feb 2004 03:51:46 -0000 1.36
+++ b/xaaInit.c 28 Feb 2004 01:28:03 -0000 1.37
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaInit.c,v 1.35 2001/07/19 18:50:16 mvojkovi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaInitAccel.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaInitAccel.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- a/xaaInitAccel.c 19 Feb 2004 03:51:46 -0000 1.37
+++ b/xaaInitAccel.c 28 Feb 2004 01:28:03 -0000 1.38
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaInitAccel.c,v 1.36 2003/01/12 03:55:51 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaLine.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaLine.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/xaaLine.c 19 Feb 2004 03:51:46 -0000 1.7
+++ b/xaaLine.c 28 Feb 2004 01:28:03 -0000 1.8
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaLine.c,v 1.6 2002/09/18 18:15:00 martin Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/X.h>
#include "misc.h"
#include "xf86.h"
Index: xaaLineMisc.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaLineMisc.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- a/xaaLineMisc.c 19 Feb 2004 03:51:46 -0000 1.6
+++ b/xaaLineMisc.c 28 Feb 2004 01:28:03 -0000 1.7
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaLineMisc.c,v 1.5 1999/01/14 13:05:27 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaNonTEGlyph.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaNonTEGlyph.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/xaaNonTEGlyph.c 19 Feb 2004 03:51:46 -0000 1.7
+++ b/xaaNonTEGlyph.c 28 Feb 2004 01:28:03 -0000 1.8
@@ -1,6 +1,9 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaNonTEGlyph.c,v 1.6 1999/11/06 23:14:46 mvojkovi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xaa.h"
#include "xaalocal.h"
#include "xaacexp.h"
Index: xaaNonTEText.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaNonTEText.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- a/xaaNonTEText.c 19 Feb 2004 03:51:46 -0000 1.15
+++ b/xaaNonTEText.c 28 Feb 2004 01:28:03 -0000 1.16
@@ -18,6 +18,9 @@
********************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaOffscreen.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaOffscreen.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/xaaOffscreen.c 19 Feb 2004 03:51:46 -0000 1.7
+++ b/xaaOffscreen.c 28 Feb 2004 01:28:03 -0000 1.8
@@ -7,6 +7,9 @@
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaOverlay.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaOverlay.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- a/xaaOverlay.c 19 Feb 2004 03:51:46 -0000 1.16
+++ b/xaaOverlay.c 28 Feb 2004 01:28:03 -0000 1.17
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaOverlay.c,v 1.15 2003/11/10 18:22:41 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaOverlayDF.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaOverlayDF.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- a/xaaOverlayDF.c 19 Feb 2004 03:51:46 -0000 1.3
+++ b/xaaOverlayDF.c 28 Feb 2004 01:28:03 -0000 1.4
@@ -6,6 +6,9 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaOverlayDF.c,v 1.2 2003/11/10 18:22:41 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaPCache.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaPCache.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- a/xaaPCache.c 19 Feb 2004 03:51:46 -0000 1.34
+++ b/xaaPCache.c 28 Feb 2004 01:28:03 -0000 1.35
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaPCache.c,v 1.33 2003/11/03 05:11:54 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaPaintWin.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaPaintWin.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- a/xaaPaintWin.c 19 Feb 2004 03:51:46 -0000 1.12
+++ b/xaaPaintWin.c 28 Feb 2004 01:28:03 -0000 1.13
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaPaintWin.c,v 1.11 2003/02/17 16:08:29 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaPict.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaPict.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- a/xaaPict.c 19 Feb 2004 03:51:46 -0000 1.20
+++ b/xaaPict.c 28 Feb 2004 01:28:03 -0000 1.21
@@ -22,6 +22,9 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaROP.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaROP.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- a/xaaROP.c 19 Feb 2004 03:51:46 -0000 1.3
+++ b/xaaROP.c 28 Feb 2004 01:28:03 -0000 1.4
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaROP.c,v 1.2 2000/09/28 20:48:01 mvojkovi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/X.h>
#include "misc.h"
#include "xf86.h"
Index: xaaRect.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaRect.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- a/xaaRect.c 19 Feb 2004 03:51:46 -0000 1.4
+++ b/xaaRect.c 28 Feb 2004 01:28:03 -0000 1.5
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaRect.c,v 1.3 1999/05/30 03:03:33 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaSpans.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaSpans.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- a/xaaSpans.c 19 Feb 2004 03:51:46 -0000 1.16
+++ b/xaaSpans.c 28 Feb 2004 01:28:03 -0000 1.17
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaSpans.c,v 1.15 2001/10/28 03:34:04 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaStateChange.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaStateChange.c,v
retrieving revision 3.4
retrieving revision 3.5
diff -u -d -r3.4 -r3.5
--- a/xaaStateChange.c 19 Feb 2004 03:51:46 -0000 3.4
+++ b/xaaStateChange.c 28 Feb 2004 01:28:03 -0000 3.5
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaStateChange.c,v 3.3 2003/08/22 19:27:31 eich Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaStipple.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaStipple.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- a/xaaStipple.c 19 Feb 2004 03:51:46 -0000 1.13
+++ b/xaaStipple.c 28 Feb 2004 01:28:03 -0000 1.14
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaStipple.c,v 1.12 2003/08/04 22:18:31 mvojkovi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xaa.h"
#include "xaalocal.h"
#include "xaacexp.h"
Index: xaaTEGlyph.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaTEGlyph.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- a/xaaTEGlyph.c 19 Feb 2004 03:51:46 -0000 1.10
+++ b/xaaTEGlyph.c 28 Feb 2004 01:28:03 -0000 1.11
@@ -1,6 +1,9 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/xaa/xaaTEGlyph.c,v 1.9 2000/09/01 05:49:45 mvojkovi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xaa.h"
#include "xaalocal.h"
#include "xaacexp.h"
Index: xaaTEText.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaTEText.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- a/xaaTEText.c 19 Feb 2004 03:51:46 -0000 1.8
+++ b/xaaTEText.c 28 Feb 2004 01:28:03 -0000 1.9
@@ -18,6 +18,9 @@
********************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "misc.h"
#include "xf86.h"
#include "xf86_ansic.h"
Index: xaaWideLine.c
===================================================================
RCS file: /cvs/xserver/xfree86/xaa/xaaWideLine.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- a/xaaWideLine.c 19 Feb 2004 03:51:46 -0000 1.12
+++ b/xaaWideLine.c 28 Feb 2004 01:28:03 -0000 1.13
@@ -14,6 +14,9 @@
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef XFree86LOADER
#if defined(_XOPEN_SOURCE) || defined(__QNXNTO__)
#include <math.h>
- Previous message: [xserver-commit] xfree86/vbe vbe.c,1.4,1.5 vbeModes.c,1.5,1.6 vbe_module.c,1.2,1.3
- Next message: [xserver-commit] xfree86/vgahw vgaCmap.c,1.8,1.9 vgaHW.c,1.59,1.60 vgaHWmodule.c,1.7,1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]