summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2005-07-11 02:29:47 +0000
committerAdam Jackson <ajax@nwnk.net>2005-07-11 02:29:47 +0000
commitec9e85771609d6ec8a94b777fc784db4d1026f20 (patch)
tree1879e57d016ea17f41406be53e06aee580d0f56c
parent7b856f1c89ceae998c2133fcd9bba2c1493744e0 (diff)
Prep for modular builds by adding guarded #include "config.h" everywhere.XORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901XORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15
-rw-r--r--src/dummy_cursor.c4
-rw-r--r--src/dummy_dga.c4
-rw-r--r--src/dummy_driver.c4
3 files changed, 12 insertions, 0 deletions
diff --git a/src/dummy_cursor.c b/src/dummy_cursor.c
index a83b326..58fa18a 100644
--- a/src/dummy_cursor.c
+++ b/src/dummy_cursor.c
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/* All drivers should typically include these */
#include "xf86.h"
#include "xf86_OSproc.h"
diff --git a/src/dummy_dga.c b/src/dummy_dga.c
index 5e35eda..98131ed 100644
--- a/src/dummy_dga.c
+++ b/src/dummy_dga.c
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
diff --git a/src/dummy_driver.c b/src/dummy_driver.c
index acec578..0c5fd71 100644
--- a/src/dummy_driver.c
+++ b/src/dummy_driver.c
@@ -4,6 +4,10 @@
* Copyright 2002, SuSE Linux AG, Author: Egbert Eich
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/* All drivers should typically include these */
#include "xf86.h"
#include "xf86_OSproc.h"