summaryrefslogtreecommitdiff
path: root/src/Type1
diff options
context:
space:
mode:
Diffstat (limited to 'src/Type1')
-rw-r--r--src/Type1/afm.c3
-rw-r--r--src/Type1/arith.c3
-rw-r--r--src/Type1/cidchar.c3
-rw-r--r--src/Type1/curves.c3
-rw-r--r--src/Type1/fontfcn.c3
-rw-r--r--src/Type1/hints.c3
-rw-r--r--src/Type1/lines.c3
-rw-r--r--src/Type1/objects.c3
-rw-r--r--src/Type1/paths.c3
-rw-r--r--src/Type1/regions.c3
-rw-r--r--src/Type1/scanfont.c5
-rw-r--r--src/Type1/spaces.c3
-rw-r--r--src/Type1/t1funcs.c3
-rw-r--r--src/Type1/t1info.c3
-rw-r--r--src/Type1/t1io.c3
-rw-r--r--src/Type1/t1malloc.c3
-rw-r--r--src/Type1/t1snap.c3
-rw-r--r--src/Type1/t1stub.c3
-rw-r--r--src/Type1/t1unicode.c3
-rw-r--r--src/Type1/token.c3
-rw-r--r--src/Type1/type1.c3
-rw-r--r--src/Type1/util.c3
22 files changed, 67 insertions, 1 deletions
diff --git a/src/Type1/afm.c b/src/Type1/afm.c
index c930ae7..0f7c510 100644
--- a/src/Type1/afm.c
+++ b/src/Type1/afm.c
@@ -17,6 +17,9 @@
*/
/* $XFree86: xc/lib/font/Type1/afm.c,v 1.2 1999/08/21 13:47:38 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef BUILDCID
#ifndef FONTMODULE
#include <stdio.h>
diff --git a/src/Type1/arith.c b/src/Type1/arith.c
index 35191d9..9611543 100644
--- a/src/Type1/arith.c
+++ b/src/Type1/arith.c
@@ -50,6 +50,9 @@ assembly language, unlike C, will have 64-bit multiply products and
The included files are:
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef FONTMODULE
# include "os.h"
#endif
diff --git a/src/Type1/cidchar.c b/src/Type1/cidchar.c
index fad8801..c0d1498 100644
--- a/src/Type1/cidchar.c
+++ b/src/Type1/cidchar.c
@@ -17,6 +17,9 @@
*/
/* $XFree86: xc/lib/font/Type1/cidchar.c,v 1.9tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef BUILDCID
#ifndef FONTMODULE
#include <stdio.h>
diff --git a/src/Type1/curves.c b/src/Type1/curves.c
index b26c35c..9d0c3f8 100644
--- a/src/Type1/curves.c
+++ b/src/Type1/curves.c
@@ -43,6 +43,9 @@ through.
Include files needed:
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef FONTMODULE
# include "os.h"
#endif
diff --git a/src/Type1/fontfcn.c b/src/Type1/fontfcn.c
index 081d81b..5b13b5e 100644
--- a/src/Type1/fontfcn.c
+++ b/src/Type1/fontfcn.c
@@ -47,6 +47,9 @@
*/
/* $XFree86: xc/lib/font/Type1/fontfcn.c,v 1.10 2001/04/05 17:42:27 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef FONTMODULE
#include <stdio.h>
#include <string.h>
diff --git a/src/Type1/hints.c b/src/Type1/hints.c
index 78aff15..14deac2 100644
--- a/src/Type1/hints.c
+++ b/src/Type1/hints.c
@@ -40,6 +40,9 @@ W. Pryor, Jr.
The included files are:
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef FONTMODULE
# include "os.h"
#endif
diff --git a/src/Type1/lines.c b/src/Type1/lines.c
index c2b0028..835afc6 100644
--- a/src/Type1/lines.c
+++ b/src/Type1/lines.c
@@ -40,6 +40,9 @@
The included files are:
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "objects.h"
#include "spaces.h"
#include "paths.h"
diff --git a/src/Type1/objects.c b/src/Type1/objects.c
index ca296e7..70857a3 100644
--- a/src/Type1/objects.c
+++ b/src/Type1/objects.c
@@ -45,6 +45,9 @@ object type.
The included files are:
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#define GLOBALS 1 /* see :hdref refid=debugvar. */
/*
The following two includes are C standards; we include them because we
diff --git a/src/Type1/paths.c b/src/Type1/paths.c
index 6860ca1..1ab25ec 100644
--- a/src/Type1/paths.c
+++ b/src/Type1/paths.c
@@ -44,6 +44,9 @@ The included files are:
*/
/* after the system includes (dsr) */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef FONTMODULE
# include "os.h"
#endif
diff --git a/src/Type1/regions.c b/src/Type1/regions.c
index 4d110ea..f8875da 100644
--- a/src/Type1/regions.c
+++ b/src/Type1/regions.c
@@ -41,6 +41,9 @@ This module is responsible for creating and manipulating regions.
The included files are:
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef FONTMODULE
# include "os.h"
#endif
diff --git a/src/Type1/scanfont.c b/src/Type1/scanfont.c
index 1ccef28..357c5fa 100644
--- a/src/Type1/scanfont.c
+++ b/src/Type1/scanfont.c
@@ -1,4 +1,4 @@
-/* $XdotOrg: xc/lib/font/Type1/scanfont.c,v 1.2 2004/04/23 18:44:09 eich Exp $ */
+/* $XdotOrg: xc/lib/font/Type1/scanfont.c,v 1.3 2005/07/03 07:00:59 daniels Exp $ */
/* $Xorg: scanfont.c,v 1.3 2000/08/17 19:46:32 cpqbld Exp $ */
/* Copyright International Business Machines,Corp. 1991
* All Rights Reserved
@@ -48,6 +48,9 @@
*/
/* $XFree86: xc/lib/font/Type1/scanfont.c,v 1.16 2003/05/27 22:26:46 tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef FONTMODULE
#include <string.h>
#else
diff --git a/src/Type1/spaces.c b/src/Type1/spaces.c
index 52e1105..a193161 100644
--- a/src/Type1/spaces.c
+++ b/src/Type1/spaces.c
@@ -39,6 +39,9 @@ This module is responsible for handling the TYPE1IMAGER "XYspace" object.
:h3.Include Files
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef FONTMODULE
#include "Xdefs.h" /* Bool declaration ??? */
#include "Xmd.h" /* INT32 declaration ??? */
diff --git a/src/Type1/t1funcs.c b/src/Type1/t1funcs.c
index cae0e04..8845e8e 100644
--- a/src/Type1/t1funcs.c
+++ b/src/Type1/t1funcs.c
@@ -101,6 +101,9 @@ from The Open Group.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef FONTMODULE
#include <string.h>
#ifdef BUILDCID
diff --git a/src/Type1/t1info.c b/src/Type1/t1info.c
index 50862b8..900e63f 100644
--- a/src/Type1/t1info.c
+++ b/src/Type1/t1info.c
@@ -101,6 +101,9 @@ from The Open Group.
*/
/* $XFree86: xc/lib/font/Type1/t1info.c,v 1.18tsi Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <X11/fonts/fntfilst.h>
#include <X11/fonts/fontutil.h>
#ifndef FONTMODULE
diff --git a/src/Type1/t1io.c b/src/Type1/t1io.c
index db3a05e..fdf6972 100644
--- a/src/Type1/t1io.c
+++ b/src/Type1/t1io.c
@@ -50,6 +50,9 @@
* I/O package for Type 1 font reading
********************************************************************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef STATIC
#define STATIC static
#endif
diff --git a/src/Type1/t1malloc.c b/src/Type1/t1malloc.c
index d311d1e..f59a949 100644
--- a/src/Type1/t1malloc.c
+++ b/src/Type1/t1malloc.c
@@ -38,6 +38,9 @@ routines (malloc/free).
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef FONTMODULE
#include "Xdefs.h" /* Bool declaration */
#include "Xmd.h" /* INT32 declaration */
diff --git a/src/Type1/t1snap.c b/src/Type1/t1snap.c
index 96b99f2..5618b58 100644
--- a/src/Type1/t1snap.c
+++ b/src/Type1/t1snap.c
@@ -30,6 +30,9 @@
/* $XFree86: xc/lib/font/Type1/t1snap.c,v 1.3 1999/08/22 08:58:54 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "objects.h"
#include "spaces.h"
#include "paths.h"
diff --git a/src/Type1/t1stub.c b/src/Type1/t1stub.c
index 1ced8ef..2fb1d79 100644
--- a/src/Type1/t1stub.c
+++ b/src/Type1/t1stub.c
@@ -29,6 +29,9 @@
*/
/* $XFree86: xc/lib/font/Type1/t1stub.c,v 1.8 2001/01/17 19:43:24 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef FONTMODULE
#include "Xdefs.h" /* Bool declaration */
#include "Xmd.h" /* INT32 declaration */
diff --git a/src/Type1/t1unicode.c b/src/Type1/t1unicode.c
index 96f646d..136cc44 100644
--- a/src/Type1/t1unicode.c
+++ b/src/Type1/t1unicode.c
@@ -22,6 +22,9 @@ THE SOFTWARE.
/* $XFree86$ */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "t1unicode.h"
static char* table_32[] =
diff --git a/src/Type1/token.c b/src/Type1/token.c
index 0ec1947..71a968b 100644
--- a/src/Type1/token.c
+++ b/src/Type1/token.c
@@ -29,6 +29,9 @@
*/
/* $XFree86: xc/lib/font/Type1/token.c,v 1.5tsi Exp $ */
/* Authors: Sig Nin & Carol Thompson IBM Almaden Research Laboratory */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "t1stdio.h"
#include "util.h"
#include "digit.h"
diff --git a/src/Type1/type1.c b/src/Type1/type1.c
index e68ee5c..c929a35 100644
--- a/src/Type1/type1.c
+++ b/src/Type1/type1.c
@@ -64,6 +64,9 @@
/******************/
/* Include Files: */
/******************/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef FONTMODULE
#include <stdio.h> /* a system-dependent include, usually */
#include <math.h>
diff --git a/src/Type1/util.c b/src/Type1/util.c
index a2eaafd..1c6048b 100644
--- a/src/Type1/util.c
+++ b/src/Type1/util.c
@@ -47,6 +47,9 @@
/* $XFree86: xc/lib/font/Type1/util.c,v 1.5 1999/08/21 13:47:53 dawes Exp $ */
/* Author: Katherine A. Hitchcock IBM Almaden Research Laboratory */
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifndef FONTMODULE
#include <stdio.h>
#else