diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-03-31 07:17:16 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2006-03-31 07:17:16 +0000 |
commit | 7ecd09a15c30770ed6e70d80fb67f88819471c20 (patch) | |
tree | 3bb083dc73cb29652b1729e878fabf00f593c5b1 /src/fontfile/ffcheck.c | |
parent | 69c4ae1e3e14a58bc2eb9b9b8820dc7183b82a67 (diff) |
Change BUILD_* to XFONT_* (Drew Parsons). Remove random #ifndef CRAY.
Diffstat (limited to 'src/fontfile/ffcheck.c')
-rw-r--r-- | src/fontfile/ffcheck.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/fontfile/ffcheck.c b/src/fontfile/ffcheck.c index 9a70a17..fed6189 100644 --- a/src/fontfile/ffcheck.c +++ b/src/fontfile/ffcheck.c @@ -125,18 +125,16 @@ FontFileCheckRegisterFpeFunctions (void) BitmapRegisterFontFileFunctions (); -#ifndef CRAY -#ifdef BUILD_SPEEDO +#ifdef XFONT_SPEEDO SpeedoRegisterFontFileFunctions (); #endif -#ifdef BUILD_TYPE1 +#ifdef XFONT_TYPE1 Type1RegisterFontFileFunctions(); #endif -#endif -#ifdef BUILD_CID +#ifdef XFONT_CID CIDRegisterFontFileFunctions(); #endif -#ifdef BUILD_FREETYPE +#ifdef XFONT_FREETYPE FreeTypeRegisterFontFileFunctions(); #endif |