[xserver-commit] xfree86/vbe vbe.c,1.4,1.5 vbeModes.c,1.5,1.6 vbe_module.c,1.2,1.3
Keith Packard
xserver-commit@pdx.freedesktop.org
- Previous message: [xserver-commit] xfree86/parser DRI.c,1.15,1.16 Device.c,1.28,1.29 Files.c,1.17,1.18 Flags.c,1.24,1.25 Input.c,1.15,1.16 Keyboard.c,1.18,1.19 Layout.c,1.25,1.26 Module.c,1.13,1.14 Monitor.c,1.29,1.30 Pointer.c,1.14,1.15 Screen.c,1.29,1.30 Vendor.c,1.18,1.19 Video.c,1.14,1.15 cpconfig.c,1.8,1.9 read.c,1.25,1.26 scan.c,1.31,1.32 write.c,1.19,1.20
- Next message: [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
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: keithp
Update of /cvs/xserver/xfree86/vbe
In directory pdx:/tmp/cvs-serv14744/vbe
Modified Files:
vbe.c vbeModes.c vbe_module.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: vbe.c
===================================================================
RCS file: /cvs/xserver/xfree86/vbe/vbe.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- a/vbe.c 19 Feb 2004 03:51:43 -0000 1.4
+++ b/vbe.c 28 Feb 2004 01:28:02 -0000 1.5
@@ -10,6 +10,9 @@
* Authors: Paulo César Pereira de Andrade <pcpa@conectiva.com.br>
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86.h"
#include "xf86_ansic.h"
#include "vbe.h"
Index: vbeModes.c
===================================================================
RCS file: /cvs/xserver/xfree86/vbe/vbeModes.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/vbeModes.c 19 Feb 2004 03:51:43 -0000 1.5
+++ b/vbeModes.c 28 Feb 2004 01:28:02 -0000 1.6
@@ -1,3 +1,6 @@
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define DEBUG_VERB 2
/*
* Copyright © 2002 David Dawes
Index: vbe_module.c
===================================================================
RCS file: /cvs/xserver/xfree86/vbe/vbe_module.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- a/vbe_module.c 19 Feb 2004 03:51:43 -0000 1.2
+++ b/vbe_module.c 28 Feb 2004 01:28:02 -0000 1.3
@@ -1,5 +1,8 @@
/* $XFree86: xc/programs/Xserver/hw/xfree86/vbe/vbe_module.c,v 1.1 2003/02/17 17:06:46 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86.h"
#include "xf86str.h"
#include "vbe.h"
- Previous message: [xserver-commit] xfree86/parser DRI.c,1.15,1.16 Device.c,1.28,1.29 Files.c,1.17,1.18 Flags.c,1.24,1.25 Input.c,1.15,1.16 Keyboard.c,1.18,1.19 Layout.c,1.25,1.26 Module.c,1.13,1.14 Monitor.c,1.29,1.30 Pointer.c,1.14,1.15 Screen.c,1.29,1.30 Vendor.c,1.18,1.19 Video.c,1.14,1.15 cpconfig.c,1.8,1.9 read.c,1.25,1.26 scan.c,1.31,1.32 write.c,1.19,1.20
- Next message: [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
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]