File bugzilla-113799-disable-byte-code-interpreter.patch of Package kdegraphics3
Index: kdegraphics-3.5.10/kpdf/xpdf/splash/SplashFTFont.cc
===================================================================
--- kdegraphics-3.5.10.orig/kpdf/xpdf/splash/SplashFTFont.cc
+++ kdegraphics-3.5.10/kpdf/xpdf/splash/SplashFTFont.cc
@@ -182,7 +182,8 @@ GBool SplashFTFont::makeGlyph(int c, int
// if we have the FT2 bytecode interpreter, autohinting won't be used
#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
if (FT_Load_Glyph(ff->face, gid,
- aa ? FT_LOAD_NO_BITMAP : FT_LOAD_DEFAULT)) {
+ aa ? FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP
+ : FT_LOAD_DEFAULT)) {
return gFalse;
}
#else