summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2006-03-31 07:17:16 +0000
committerDaniel Stone <daniel@fooishbar.org>2006-03-31 07:17:16 +0000
commit7ecd09a15c30770ed6e70d80fb67f88819471c20 (patch)
tree3bb083dc73cb29652b1729e878fabf00f593c5b1
parent69c4ae1e3e14a58bc2eb9b9b8820dc7183b82a67 (diff)
Change BUILD_* to XFONT_* (Drew Parsons). Remove random #ifndef CRAY.
-rw-r--r--ChangeLog6
-rw-r--r--src/fontfile/ffcheck.c10
2 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index c014a70..14cb05c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-31 Daniel Stone <daniel@freedesktop.org>
+
+ * src/fontfile/ffcheck.c:
+ Change BUILD_* to XFONT_*. (Drew Parsons)
+ Minor cleanup: remove random #ifndef CRAY.
+
2006-03-20 Adam Jackson <ajax@freedesktop.org>
* src/Makefile.am:
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