diff options
author | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-05-17 17:02:24 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-05-17 17:02:24 +0000 |
commit | 1406e1cbe2cf76e6e056377af831f9fdf710e487 (patch) | |
tree | 2abca46208c3c04d5ba1d5e39c728f45bdd3288f | |
parent | 03d31637787906378bc2809758b6dbfe79ea55ad (diff) |
Conditionally include config.h in xc/lib/Xdamage and xc/lib/XfixesXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_13XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10
-rw-r--r-- | src/Cursor.c | 3 | ||||
-rw-r--r-- | src/Region.c | 3 | ||||
-rw-r--r-- | src/SaveSet.c | 3 | ||||
-rw-r--r-- | src/Selection.c | 3 | ||||
-rw-r--r-- | src/Xfixes.c | 3 |
5 files changed, 15 insertions, 0 deletions
diff --git a/src/Cursor.c b/src/Cursor.c index 782db53..ada8a68 100644 --- a/src/Cursor.c +++ b/src/Cursor.c @@ -22,6 +22,9 @@ * PERFORMANCE OF THIS SOFTWARE. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include "Xfixesint.h" void diff --git a/src/Region.c b/src/Region.c index 6bf0329..c9f5920 100644 --- a/src/Region.c +++ b/src/Region.c @@ -22,6 +22,9 @@ * PERFORMANCE OF THIS SOFTWARE. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include "Xfixesint.h" XserverRegion diff --git a/src/SaveSet.c b/src/SaveSet.c index be8ccc8..c5b73f9 100644 --- a/src/SaveSet.c +++ b/src/SaveSet.c @@ -22,6 +22,9 @@ * PERFORMANCE OF THIS SOFTWARE. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include "Xfixesint.h" void diff --git a/src/Selection.c b/src/Selection.c index cfc32a8..888dc84 100644 --- a/src/Selection.c +++ b/src/Selection.c @@ -22,6 +22,9 @@ * PERFORMANCE OF THIS SOFTWARE. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include "Xfixesint.h" void diff --git a/src/Xfixes.c b/src/Xfixes.c index 94d1bc6..e4dfd05 100644 --- a/src/Xfixes.c +++ b/src/Xfixes.c @@ -22,6 +22,9 @@ * PERFORMANCE OF THIS SOFTWARE. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include "Xfixesint.h" XFixesExtInfo XFixesExtensionInfo; |