summaryrefslogtreecommitdiff
path: root/src/bitmap
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2005-07-09 06:36:13 +0000
committerKeith Packard <keithp@keithp.com>2005-07-09 06:36:13 +0000
commit3c4ac0b9f5b7aced60a763bcaca7b32cd53a7fec (patch)
tree11b135dca263e035e6882a4e712524312ca9b3be /src/bitmap
parent712140dadd20c7d2024d7b75f7033fff407e57e6 (diff)
Include config.h in every source file to make sure necessary options are
found when building in the modular tree
Diffstat (limited to 'src/bitmap')
-rw-r--r--src/bitmap/bdfread.c4
-rw-r--r--src/bitmap/bdfutils.c4
-rw-r--r--src/bitmap/bitmap.c4
-rw-r--r--src/bitmap/bitmapfunc.c4
-rw-r--r--src/bitmap/bitmaputil.c4
-rw-r--r--src/bitmap/bitscale.c4
-rw-r--r--src/bitmap/fontink.c4
-rw-r--r--src/bitmap/pcfread.c4
-rw-r--r--src/bitmap/pcfwrite.c3
-rw-r--r--src/bitmap/snfread.c4
10 files changed, 39 insertions, 0 deletions
diff --git a/src/bitmap/bdfread.c b/src/bitmap/bdfread.c
index dc56a89..acb77e9 100644
--- a/src/bitmap/bdfread.c
+++ b/src/bitmap/bdfread.c
@@ -52,6 +52,10 @@ from The Open Group.
*/
/* $XFree86: xc/lib/font/bitmap/bdfread.c,v 1.12tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifndef FONTMODULE
#include <ctype.h>
#endif
diff --git a/src/bitmap/bdfutils.c b/src/bitmap/bdfutils.c
index 0155833..a0c5ae9 100644
--- a/src/bitmap/bdfutils.c
+++ b/src/bitmap/bdfutils.c
@@ -51,6 +51,10 @@ from The Open Group.
*/
/* $XFree86: xc/lib/font/bitmap/bdfutils.c,v 1.10 2001/12/14 19:56:45 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifndef FONTMODULE
#include <ctype.h>
#include <stdio.h>
diff --git a/src/bitmap/bitmap.c b/src/bitmap/bitmap.c
index eb6caf2..d238f4d 100644
--- a/src/bitmap/bitmap.c
+++ b/src/bitmap/bitmap.c
@@ -31,6 +31,10 @@ in this Software without prior written authorization from The Open Group.
* Author: Keith Packard, MIT X Consortium
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <X11/fonts/fntfilst.h>
#include <X11/fonts/bitmap.h>
diff --git a/src/bitmap/bitmapfunc.c b/src/bitmap/bitmapfunc.c
index a21680b..36356fd 100644
--- a/src/bitmap/bitmapfunc.c
+++ b/src/bitmap/bitmapfunc.c
@@ -32,6 +32,10 @@ in this Software without prior written authorization from The Open Group.
* Author: Keith Packard, MIT X Consortium
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <X11/fonts/fntfilst.h>
#include <X11/fonts/bitmap.h>
#include <X11/fonts/fontutil.h>
diff --git a/src/bitmap/bitmaputil.c b/src/bitmap/bitmaputil.c
index 6d2cb28..3487f7f 100644
--- a/src/bitmap/bitmaputil.c
+++ b/src/bitmap/bitmaputil.c
@@ -29,6 +29,10 @@ from The Open Group.
*/
/* $XFree86: xc/lib/font/bitmap/bitmaputil.c,v 1.10 2002/09/24 20:52:48 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <X11/fonts/fntfilst.h>
#include <X11/fonts/bitmap.h>
#include <X11/fonts/bdfint.h>
diff --git a/src/bitmap/bitscale.c b/src/bitmap/bitscale.c
index e03da0c..3e49ecf 100644
--- a/src/bitmap/bitscale.c
+++ b/src/bitmap/bitscale.c
@@ -32,6 +32,10 @@ from The Open Group.
* Author: Keith Packard, MIT X Consortium
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <X11/fonts/fntfilst.h>
#include <X11/fonts/bitmap.h>
#include <X11/fonts/fontutil.h>
diff --git a/src/bitmap/fontink.c b/src/bitmap/fontink.c
index fed4b24..a9606f0 100644
--- a/src/bitmap/fontink.c
+++ b/src/bitmap/fontink.c
@@ -33,6 +33,10 @@ from The Open Group.
* Author: Keith Packard, MIT X Consortium
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <X11/fonts/fntfilst.h>
#include <X11/fonts/bitmap.h>
#include <X11/fonts/bdfint.h>
diff --git a/src/bitmap/pcfread.c b/src/bitmap/pcfread.c
index 06c9ff3..dd76868 100644
--- a/src/bitmap/pcfread.c
+++ b/src/bitmap/pcfread.c
@@ -32,6 +32,10 @@ from The Open Group.
* Author: Keith Packard, MIT X Consortium
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <X11/fonts/fntfilst.h>
#include <X11/fonts/bitmap.h>
#include <X11/fonts/pcf.h>
diff --git a/src/bitmap/pcfwrite.c b/src/bitmap/pcfwrite.c
index bdf754f..8d5e942 100644
--- a/src/bitmap/pcfwrite.c
+++ b/src/bitmap/pcfwrite.c
@@ -32,6 +32,9 @@ from The Open Group.
* Author: Keith Packard, MIT X Consortium
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/fonts/fntfilst.h>
#include <X11/fonts/bitmap.h>
diff --git a/src/bitmap/snfread.c b/src/bitmap/snfread.c
index c8bbee0..01b6bf3 100644
--- a/src/bitmap/snfread.c
+++ b/src/bitmap/snfread.c
@@ -51,6 +51,10 @@ from The Open Group.
*/
/* $XFree86: xc/lib/font/bitmap/snfread.c,v 1.12 2003/11/17 22:20:22 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifndef FONTMODULE
#include <ctype.h>
#endif