summaryrefslogtreecommitdiff
path: root/src/fontfile
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2009-01-20 01:13:08 -0500
committerAdam Jackson <ajax@redhat.com>2009-01-20 01:13:08 -0500
commit1247f01ee36f80222e30c1678f940329aadb8335 (patch)
tree3abe9c8bc9088236f69cfa695a1e8b4229c83053 /src/fontfile
parent85b66b8a7f3095f10437c8ecb3dcbfe68c9cfced (diff)
Delete Type1
Yes, these are still real fonts, but freetype can handle them just fine.
Diffstat (limited to 'src/fontfile')
-rw-r--r--src/fontfile/ffcheck.c7
-rw-r--r--src/fontfile/register.c13
2 files changed, 0 insertions, 20 deletions
diff --git a/src/fontfile/ffcheck.c b/src/fontfile/ffcheck.c
index 9f05f78..fd94fd0 100644
--- a/src/fontfile/ffcheck.c
+++ b/src/fontfile/ffcheck.c
@@ -117,13 +117,6 @@ FontFileCheckListNextFontOrAlias(pointer client, FontPathElementPtr fpe,
/* Font renderers to initialize when not linked into something like
Xorg that provides its own module configuration options */
static const FontModule builtinFontModuleList[] = {
-#ifdef XFONT_TYPE1
- {
- Type1RegisterFontFileFunctions,
- "type1",
- NULL
- },
-#endif
#ifdef XFONT_FREETYPE
{
FreeTypeRegisterFontFileFunctions,
diff --git a/src/fontfile/register.c b/src/fontfile/register.c
index 9bc4941..b8bb0b8 100644
--- a/src/fontfile/register.c
+++ b/src/fontfile/register.c
@@ -49,12 +49,6 @@ in this Software without prior written authorization from The Open Group.
* with other packages.
*/
-#ifndef CRAY
-# ifdef BUILD_TYPE1
-# define XFONT_TYPE1 1
-# endif
-#endif
-
#ifdef BUILD_FREETYPE
# define XFONT_FREETYPE 1
#endif
@@ -62,13 +56,6 @@ in this Software without prior written authorization from The Open Group.
/* Font renderers to initialize when not linked into something like
Xorg that provides its own module configuration options */
static const FontModule builtinFontModuleList[] = {
-#ifdef XFONT_TYPE1
- {
- Type1RegisterFontFileFunctions,
- "type1",
- NULL
- },
-#endif
#ifdef XFONT_FREETYPE
{
FreeTypeRegisterFontFileFunctions,