diff options
author | Adam Jackson <ajax@redhat.com> | 2008-04-18 18:28:01 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-04-18 18:28:01 -0400 |
commit | f6617b4127125516583f321c961d70f762f728be (patch) | |
tree | 3ddc9e26362ed236ddf95ff3cbe6cf6706fc76a5 /mi | |
parent | c14f5dc237a31b13d98ae2d0d6143bd91083cf13 (diff) |
Death to Extended Visual Information.
Diffstat (limited to 'mi')
-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 cc4c15c9d..568bc9e67 100644 --- a/mi/miinitext.c +++ b/mi/miinitext.c @@ -130,9 +130,6 @@ extern Bool noDbeExtension; #ifdef DPMSExtension extern Bool noDPMSExtension; #endif -#ifdef EVI -extern Bool noEVIExtension; -#endif #ifdef FONTCACHE extern Bool noFontCacheExtension; #endif @@ -265,9 +262,6 @@ typedef void (*InitExtension)(INITARGS); #endif /* FIXME: this whole block of externs should be from the appropriate headers */ -#ifdef EVI -extern void EVIExtensionInit(INITARGS); -#endif #ifdef MITSHM extern void ShmExtensionInit(INITARGS); #endif @@ -413,9 +407,6 @@ static ExtensionToggle ExtensionToggleList[] = #ifdef DPMSExtension { "DPMS", &noDPMSExtension }, #endif -#ifdef EVI - { "Extended-Visual-Information", &noEVIExtension }, -#endif #ifdef FONTCACHE { "FontCache", &noFontCacheExtension }, #endif @@ -548,9 +539,6 @@ InitExtensions(argc, argv) #ifdef MITSHM if (!noMITShmExtension) ShmExtensionInit(); #endif -#ifdef EVI - if (!noEVIExtension) EVIExtensionInit(); -#endif #ifdef MULTIBUFFER if (!noMultibufferExtension) MultibufferExtensionInit(); #endif |