diff options
author | Kevin E Martin <kem@kem.org> | 2005-07-03 21:38:42 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-07-03 21:38:42 +0000 |
commit | b15a03de6b1897d7c8292e154d0e927f43e3cde0 (patch) | |
tree | aaec3cab34d551c4bc0cf148333d76435bf6aa96 /src | |
parent | bf4070d02196cab1de62d5fe19be9a1aa74a87c7 (diff) |
Install publicly used headers in X11/fonts.XORG-6_8_99_14
Change source files that use these headers to get them via <X11/fonts/*.h>.
Diffstat (limited to 'src')
-rw-r--r-- | src/bitmap/bdfread.c | 2 | ||||
-rw-r--r-- | src/bitmap/bdfutils.c | 2 | ||||
-rw-r--r-- | src/bitmap/bitmapfunc.c | 4 | ||||
-rw-r--r-- | src/bitmap/bitmaputil.c | 2 | ||||
-rw-r--r-- | src/bitmap/fontink.c | 2 | ||||
-rw-r--r-- | src/bitmap/pcfread.c | 2 | ||||
-rw-r--r-- | src/bitmap/pcfwrite.c | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/src/bitmap/bdfread.c b/src/bitmap/bdfread.c index 37d54a2..dc56a89 100644 --- a/src/bitmap/bdfread.c +++ b/src/bitmap/bdfread.c @@ -59,7 +59,7 @@ from The Open Group. #include <X11/fonts/fontutil.h> /* use bitmap structure */ #include <X11/fonts/bitmap.h> -#include "bdfint.h" +#include <X11/fonts/bdfint.h> #define INDICES 256 #define MAXENCODING 0xFFFF diff --git a/src/bitmap/bdfutils.c b/src/bitmap/bdfutils.c index 3128eab..0155833 100644 --- a/src/bitmap/bdfutils.c +++ b/src/bitmap/bdfutils.c @@ -61,7 +61,7 @@ from The Open Group. #include <X11/fonts/fontstruct.h> /* use bitmap structure */ #include <X11/fonts/bitmap.h> -#include "bdfint.h" +#include <X11/fonts/bdfint.h> int bdfFileLineNum; diff --git a/src/bitmap/bitmapfunc.c b/src/bitmap/bitmapfunc.c index 28028f9..a21680b 100644 --- a/src/bitmap/bitmapfunc.c +++ b/src/bitmap/bitmapfunc.c @@ -35,8 +35,8 @@ in this Software without prior written authorization from The Open Group. #include <X11/fonts/fntfilst.h> #include <X11/fonts/bitmap.h> #include <X11/fonts/fontutil.h> -#include "bdfint.h" -#include "pcf.h" +#include <X11/fonts/bdfint.h> +#include <X11/fonts/pcf.h> #include "snfstr.h" typedef struct _BitmapFileFunctions { diff --git a/src/bitmap/bitmaputil.c b/src/bitmap/bitmaputil.c index 79093ab..6d2cb28 100644 --- a/src/bitmap/bitmaputil.c +++ b/src/bitmap/bitmaputil.c @@ -31,7 +31,7 @@ from The Open Group. #include <X11/fonts/fntfilst.h> #include <X11/fonts/bitmap.h> -#include "bdfint.h" +#include <X11/fonts/bdfint.h> #ifndef MAXSHORT #define MAXSHORT 32767 diff --git a/src/bitmap/fontink.c b/src/bitmap/fontink.c index cc70cd7..fed4b24 100644 --- a/src/bitmap/fontink.c +++ b/src/bitmap/fontink.c @@ -35,7 +35,7 @@ from The Open Group. #include <X11/fonts/fntfilst.h> #include <X11/fonts/bitmap.h> -#include "bdfint.h" +#include <X11/fonts/bdfint.h> static unsigned char ink_mask_msb[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, diff --git a/src/bitmap/pcfread.c b/src/bitmap/pcfread.c index d8d75f6..06c9ff3 100644 --- a/src/bitmap/pcfread.c +++ b/src/bitmap/pcfread.c @@ -34,7 +34,7 @@ from The Open Group. #include <X11/fonts/fntfilst.h> #include <X11/fonts/bitmap.h> -#include "pcf.h" +#include <X11/fonts/pcf.h> #ifndef MAX #define MAX(a,b) (((a)>(b)) ? a : b) diff --git a/src/bitmap/pcfwrite.c b/src/bitmap/pcfwrite.c index 03742f5..bdf754f 100644 --- a/src/bitmap/pcfwrite.c +++ b/src/bitmap/pcfwrite.c @@ -35,7 +35,7 @@ from The Open Group. #include <X11/fonts/fntfilst.h> #include <X11/fonts/bitmap.h> -#include "pcf.h" +#include <X11/fonts/pcf.h> /* Write PCF font files */ |