diff options
author | Adam Jackson <ajax@redhat.com> | 2008-07-18 10:54:10 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-07-18 10:54:10 -0400 |
commit | 0b45ba488d8a3e901b83e445d17e7e9a67047b6c (patch) | |
tree | aa3f0a7a90d91e5bbecbb445e75f9d232e89101a /mi/miinitext.c | |
parent | b85392e66b4cbfcc95897ac342f19ac8ab04d4cc (diff) |
Drop the FONTCACHE extension.
This appears to have been dead code since X-TT was merged.
Diffstat (limited to 'mi/miinitext.c')
-rw-r--r-- | mi/miinitext.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/mi/miinitext.c b/mi/miinitext.c index fc1ac64e6..67249dc80 100644 --- a/mi/miinitext.c +++ b/mi/miinitext.c @@ -101,9 +101,6 @@ extern Bool noDbeExtension; #ifdef DPMSExtension extern Bool noDPMSExtension; #endif -#ifdef FONTCACHE -extern Bool noFontCacheExtension; -#endif #ifdef GLXEXT extern Bool noGlxExtension; #endif @@ -284,9 +281,6 @@ extern void XFree86DRIExtensionInit(INITARGS); #ifdef DPMSExtension extern void DPMSExtensionInit(INITARGS); #endif -#ifdef FONTCACHE -extern void FontCacheExtensionInit(INITARGS); -#endif #ifdef RENDER extern void RenderExtensionInit(INITARGS); #endif @@ -340,9 +334,6 @@ static ExtensionToggle ExtensionToggleList[] = #ifdef DPMSExtension { "DPMS", &noDPMSExtension }, #endif -#ifdef FONTCACHE - { "FontCache", &noFontCacheExtension }, -#endif #ifdef GLXEXT { "GLX", &noGlxExtension }, #endif @@ -504,9 +495,6 @@ InitExtensions(int argc, char *argv[]) #if defined(DPMSExtension) && !defined(NO_HW_ONLY_EXTS) if (!noDPMSExtension) DPMSExtensionInit(); #endif -#ifdef FONTCACHE - if (!noFontCacheExtension) FontCacheExtensionInit(); -#endif #ifdef XF86BIGFONT if (!noXFree86BigfontExtension) XFree86BigfontExtensionInit(); #endif |