debrix/hw/xorg/vgahw vgaCmap.c, 1.2, 1.3 vgaHW.c, 1.1.1.3,
1.2 vgaHW.h, 1.1.1.1, 1.2 vgaHWmodule.c, 1.2, 1.3
Daniel Stone
xserver-commit at pdx.freedesktop.org
Fri Jun 11 05:41:34 EST 2004
- Previous message: debrix/hw/xorg/vbe vbe.c, 1.2, 1.3 vbe.h, 1.2, 1.3 vbeModes.c, 1.2,
1.3 vbeModes.h, 1.2, 1.3 vbe_module.c, 1.2, 1.3
- Next message: debrix/hw/xorg/xaa xaa.h, 1.2, 1.3 xaaBitBlt.c, 1.2,
1.3 xaaBitOrder.c, 1.2, 1.3 xaaBitmap.c, 1.2, 1.3 xaaCpyArea.c,
1.2, 1.3 xaaCpyPlane.c, 1.2, 1.3 xaaCpyWin.c, 1.2,
1.3 xaaDashLine.c, 1.2, 1.3 xaaFallback.c, 1.2,
1.3 xaaFillArc.c, 1.2, 1.3 xaaFillPoly.c, 1.2,
1.3 xaaFillRect.c, 1.2, 1.3 xaaGC.c, 1.2, 1.3 xaaGCmisc.c, 1.2,
1.3 xaaImage.c, 1.2, 1.3 xaaInit.c, 1.2, 1.3 xaaInitAccel.c,
1.2, 1.3 xaaLine.c, 1.2, 1.3 xaaLineMisc.c, 1.2,
1.3 xaaNonTEGlyph.c, 1.2, 1.3 xaaNonTEText.c, 1.2,
1.3 xaaOffscreen.c, 1.2, 1.3 xaaOverlay.c, 1.2,
1.3 xaaOverlayDF.c, 1.2, 1.3 xaaPCache.c, 1.2,
1.3 xaaPaintWin.c, 1.2, 1.3 xaaPict.c, 1.2, 1.3 xaaROP.c, 1.2,
1.3 xaaRect.c, 1.2, 1.3 xaaSpans.c, 1.2, 1.3 xaaStateChange.c,
1.2, 1.3 xaaStipple.c, 1.2, 1.3 xaaTEGlyph.c, 1.2,
1.3 xaaTEText.c, 1.2, 1.3 xaaWideLine.c, 1.2, 1.3 xaacexp.h,
1.2, 1.3 xaalocal.h, 1.2, 1.3 xaarop.h, 1.2, 1.3 xaawrap.h, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: daniel
Update of /cvs/xserver/debrix/hw/xorg/vgahw
In directory pdx:/home/daniel/x/debrix/debrix/hw/xorg/vgahw
Modified Files:
vgaCmap.c vgaHW.c vgaHW.h vgaHWmodule.c
Log Message:
Initial import from modular sources.
Index: vgaCmap.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/vgahw/vgaCmap.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- vgaCmap.c 23 Apr 2004 19:54:16 -0000 1.2
+++ vgaCmap.c 10 Jun 2004 19:41:30 -0000 1.3
@@ -24,8 +24,11 @@
/* $XConsortium: vgaCmap.c /main/15 1996/10/28 05:13:44 kaleb $ */
-#include "X.h"
-#include "Xproto.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+#include <X11/X.h>
+#include <X11/Xproto.h>
#include "windowstr.h"
#include "compiler.h"
#include "mipointer.h"
Index: vgaHW.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/vgahw/vgaHW.c,v
retrieving revision 1.1.1.3
retrieving revision 1.2
diff -u -d -r1.1.1.3 -r1.2
--- vgaHW.c 23 Feb 2004 20:35:22 -0000 1.1.1.3
+++ vgaHW.c 10 Jun 2004 19:41:30 -0000 1.2
@@ -10,9 +10,12 @@
*
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define _NEED_SYSI86
-#include "X.h"
+#include <X11/X.h>
#include "misc.h"
#include "xf86.h"
Index: vgaHW.h
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/vgahw/vgaHW.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- vgaHW.h 14 Nov 2003 16:48:56 -0000 1.1.1.1
+++ vgaHW.h 10 Jun 2004 19:41:30 -0000 1.2
@@ -11,10 +11,13 @@
* Author: Dirk Hohndel
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef _VGAHW_H
#define _VGAHW_H
-#include "X.h"
+#include <X11/X.h>
#include "misc.h"
#include "input.h"
#include "scrnintstr.h"
@@ -27,7 +30,7 @@
#include "globals.h"
#define DPMS_SERVER
-#include "extensions/dpms.h"
+#include <X11/extensions/dpms.h>
extern int vgaHWGetIndex(void);
Index: vgaHWmodule.c
===================================================================
RCS file: /cvs/xserver/debrix/hw/xorg/vgahw/vgaHWmodule.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- vgaHWmodule.c 23 Apr 2004 19:54:16 -0000 1.2
+++ vgaHWmodule.c 10 Jun 2004 19:41:30 -0000 1.3
@@ -4,6 +4,9 @@
* Copyright 1998 by The XFree86 Project, Inc
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef XFree86LOADER
#include "xf86Module.h"
- Previous message: debrix/hw/xorg/vbe vbe.c, 1.2, 1.3 vbe.h, 1.2, 1.3 vbeModes.c, 1.2,
1.3 vbeModes.h, 1.2, 1.3 vbe_module.c, 1.2, 1.3
- Next message: debrix/hw/xorg/xaa xaa.h, 1.2, 1.3 xaaBitBlt.c, 1.2,
1.3 xaaBitOrder.c, 1.2, 1.3 xaaBitmap.c, 1.2, 1.3 xaaCpyArea.c,
1.2, 1.3 xaaCpyPlane.c, 1.2, 1.3 xaaCpyWin.c, 1.2,
1.3 xaaDashLine.c, 1.2, 1.3 xaaFallback.c, 1.2,
1.3 xaaFillArc.c, 1.2, 1.3 xaaFillPoly.c, 1.2,
1.3 xaaFillRect.c, 1.2, 1.3 xaaGC.c, 1.2, 1.3 xaaGCmisc.c, 1.2,
1.3 xaaImage.c, 1.2, 1.3 xaaInit.c, 1.2, 1.3 xaaInitAccel.c,
1.2, 1.3 xaaLine.c, 1.2, 1.3 xaaLineMisc.c, 1.2,
1.3 xaaNonTEGlyph.c, 1.2, 1.3 xaaNonTEText.c, 1.2,
1.3 xaaOffscreen.c, 1.2, 1.3 xaaOverlay.c, 1.2,
1.3 xaaOverlayDF.c, 1.2, 1.3 xaaPCache.c, 1.2,
1.3 xaaPaintWin.c, 1.2, 1.3 xaaPict.c, 1.2, 1.3 xaaROP.c, 1.2,
1.3 xaaRect.c, 1.2, 1.3 xaaSpans.c, 1.2, 1.3 xaaStateChange.c,
1.2, 1.3 xaaStipple.c, 1.2, 1.3 xaaTEGlyph.c, 1.2,
1.3 xaaTEText.c, 1.2, 1.3 xaaWideLine.c, 1.2, 1.3 xaacexp.h,
1.2, 1.3 xaalocal.h, 1.2, 1.3 xaarop.h, 1.2, 1.3 xaawrap.h, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the xserver-commit
mailing list