From fbdf493a3e7e48039a0826531e11aa33b04bf391 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Mon, 14 Dec 2009 18:46:00 -0800 Subject: [PATCH] Add freetype & type1 to the LoadModules ignore list Signed-off-by: Alan Coopersmith Acked-by: Adam Jackson --- hw/xfree86/common/xf86Config.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hw/xfree86/common/xf86Config.c b/hw/xfree86/common/xf86Config.c index e1283f97f..a6d66f35a 100644 --- a/hw/xfree86/common/xf86Config.c +++ b/hw/xfree86/common/xf86Config.c @@ -249,7 +249,9 @@ xf86ModulelistFromConfig(pointer **optlist) { int count = 0, i = 0; char **modulearray; - char *ignore[] = { "GLcore", "speedo", "bitmap", "drm", NULL }; + char *ignore[] = { "GLcore", "speedo", "bitmap", "drm", + "freetype", "type1", + NULL }; pointer *optarray; XF86LoadPtr modp; Bool found;