[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
Keith Packard
xserver-commit@pdx.freedesktop.org
- Previous message: [xserver-commit] xfree86/ramdac BT.c,1.9,1.10 IBM.c,1.14,1.15 TI.c,1.9,1.10 xf86Cursor.c,1.21,1.22 xf86HWCurs.c,1.14,1.15 xf86RamDac.c,1.8,1.9 xf86RamDacCmap.c,1.8,1.9 xf86RamDacMod.c,1.7,1.8
- Next message: [xserver-commit] xfree86/vbe vbe.c,1.4,1.5 vbeModes.c,1.5,1.6 vbe_module.c,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: keithp
Update of /cvs/xserver/xfree86/parser
In directory pdx:/tmp/cvs-serv14744/parser
Modified Files:
DRI.c Device.c Files.c Flags.c Input.c Keyboard.c Layout.c
Module.c Monitor.c Pointer.c Screen.c Vendor.c Video.c
cpconfig.c read.c scan.c write.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: DRI.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/DRI.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- a/DRI.c 19 Feb 2004 03:51:41 -0000 1.15
+++ b/DRI.c 28 Feb 2004 01:28:01 -0000 1.16
@@ -28,6 +28,9 @@
*
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Device.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Device.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- a/Device.c 19 Feb 2004 03:51:41 -0000 1.28
+++ b/Device.c 28 Feb 2004 01:28:01 -0000 1.29
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Files.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Files.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- a/Files.c 19 Feb 2004 03:51:41 -0000 1.17
+++ b/Files.c 28 Feb 2004 01:28:01 -0000 1.18
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/Xos.h>
#include "xf86Parser.h"
#include "xf86tokens.h"
Index: Flags.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Flags.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- a/Flags.c 19 Feb 2004 03:51:41 -0000 1.24
+++ b/Flags.c 28 Feb 2004 01:28:01 -0000 1.25
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Input.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Input.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- a/Input.c 19 Feb 2004 03:51:41 -0000 1.15
+++ b/Input.c 28 Feb 2004 01:28:01 -0000 1.16
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Keyboard.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Keyboard.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- a/Keyboard.c 19 Feb 2004 03:51:41 -0000 1.18
+++ b/Keyboard.c 28 Feb 2004 01:28:01 -0000 1.19
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Layout.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Layout.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- a/Layout.c 19 Feb 2004 03:51:41 -0000 1.25
+++ b/Layout.c 28 Feb 2004 01:28:01 -0000 1.26
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Module.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Module.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- a/Module.c 19 Feb 2004 03:51:41 -0000 1.13
+++ b/Module.c 28 Feb 2004 01:28:01 -0000 1.14
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Monitor.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Monitor.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- a/Monitor.c 19 Feb 2004 03:51:41 -0000 1.29
+++ b/Monitor.c 28 Feb 2004 01:28:01 -0000 1.30
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Pointer.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Pointer.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- a/Pointer.c 19 Feb 2004 03:51:41 -0000 1.14
+++ b/Pointer.c 28 Feb 2004 01:28:01 -0000 1.15
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Screen.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Screen.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- a/Screen.c 19 Feb 2004 03:51:41 -0000 1.29
+++ b/Screen.c 28 Feb 2004 01:28:01 -0000 1.30
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Vendor.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Vendor.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- a/Vendor.c 19 Feb 2004 03:51:41 -0000 1.18
+++ b/Vendor.c 28 Feb 2004 01:28:01 -0000 1.19
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: Video.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/Video.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- a/Video.c 19 Feb 2004 03:51:41 -0000 1.14
+++ b/Video.c 28 Feb 2004 01:28:01 -0000 1.15
@@ -55,6 +55,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: cpconfig.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/cpconfig.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- a/cpconfig.c 19 Feb 2004 03:51:41 -0000 1.8
+++ b/cpconfig.c 28 Feb 2004 01:28:01 -0000 1.9
@@ -29,6 +29,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
Index: read.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/read.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- a/read.c 19 Feb 2004 03:51:41 -0000 1.25
+++ b/read.c 28 Feb 2004 01:28:01 -0000 1.26
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
Index: scan.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/scan.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- a/scan.c 19 Feb 2004 03:51:41 -0000 1.31
+++ b/scan.c 28 Feb 2004 01:28:01 -0000 1.32
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
Index: write.c
===================================================================
RCS file: /cvs/xserver/xfree86/parser/write.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- a/write.c 19 Feb 2004 03:51:41 -0000 1.19
+++ b/write.c 28 Feb 2004 01:28:01 -0000 1.20
@@ -56,6 +56,9 @@
/* View/edit this file with tab stops set to 4 */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "xf86Parser.h"
#include "xf86tokens.h"
#include "Configint.h"
- Previous message: [xserver-commit] xfree86/ramdac BT.c,1.9,1.10 IBM.c,1.14,1.15 TI.c,1.9,1.10 xf86Cursor.c,1.21,1.22 xf86HWCurs.c,1.14,1.15 xf86RamDac.c,1.8,1.9 xf86RamDacCmap.c,1.8,1.9 xf86RamDacMod.c,1.7,1.8
- Next message: [xserver-commit] xfree86/vbe vbe.c,1.4,1.5 vbeModes.c,1.5,1.6 vbe_module.c,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]